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:
authorChristopher Haster <geky@geky.net>2023-12-21 09:06:29 +0300
committerGitHub <noreply@github.com>2023-12-21 09:06:29 +0300
commit9b82db72d8673c15f8048c4f71bc6c3d9ae5e08c (patch)
tree7c66e50ab3aca07d9c398439512a01ea41477ac5
parentc733d9ec5776dfc949ec6dc71fa9ce3ff71de6e5 (diff)
parent99b84ee3db9ff1af25fe7194079b312e3a76ca61 (diff)
Merge pull request #898 from zchen24/patch-1
Update DESIGN.md minor typo
-rw-r--r--DESIGN.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/DESIGN.md b/DESIGN.md
index 1d02ba3..9c9703a 100644
--- a/DESIGN.md
+++ b/DESIGN.md
@@ -59,7 +59,7 @@ This leaves us with three major requirements for an embedded filesystem.
RAM to temporarily store filesystem metadata.
For ROM, this means we need to keep our design simple and reuse code paths
- were possible. For RAM we have a stronger requirement, all RAM usage is
+ where possible. For RAM we have a stronger requirement, all RAM usage is
bounded. This means RAM usage does not grow as the filesystem changes in
size or number of files. This creates a unique challenge as even presumably
simple operations, such as traversing the filesystem, become surprisingly
@@ -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.
```