Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/littlefs-project/littlefs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZihan Chen <zihan.chen.jhu@gmail.com>2023-11-27 10:47:54 +0300
committerChristopher Haster <geky@geky.net>2023-12-21 08:42:26 +0300
commit99b84ee3db9ff1af25fe7194079b312e3a76ca61 (patch)
tree7c66e50ab3aca07d9c398439512a01ea41477ac5
parent10bcff1af867ec9c86ca3a7d91f54305221ff840 (diff)
Update DESIGN.md, fix minor typo
-rw-r--r--DESIGN.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/DESIGN.md b/DESIGN.md
index 0242a37..9c9703a 100644
--- a/DESIGN.md
+++ b/DESIGN.md
@@ -626,7 +626,7 @@ log&#8322;_n_ pointers that skip to different preceding elements of the
skip-list.
The name comes from heavy use of the [CTZ instruction][wikipedia-ctz], which
-lets us calculate the power-of-two factors efficiently. For a give block _n_,
+lets us calculate the power-of-two factors efficiently. For a given block _n_,
that block contains ctz(_n_)+1 pointers.
```