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 <chaster@utexas.edu>2017-07-16 20:41:47 +0300
committerChristopher Haster <chaster@utexas.edu>2017-07-16 20:41:47 +0300
commit476915fee646f6e082f5141ebbc377ae816ef79d (patch)
treea7d5857a71e039372cfb8fd40f04d2c2ca170c75 /DESIGN.md
parent663e953a5073ac8e459f60d18375f887f14e21a2 (diff)
Removed a few "what"s from the documentation
Diffstat (limited to 'DESIGN.md')
-rw-r--r--DESIGN.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/DESIGN.md b/DESIGN.md
index 3381c79..dcc469a 100644
--- a/DESIGN.md
+++ b/DESIGN.md
@@ -639,9 +639,9 @@ v
'--------' '--------'
```
-Wait, wait, wait, wait, wait, that's not atomic at all! If power is lost after
-removing directory B from the root, directory B is still in the linked-list.
-We've just created a memory leak!
+Wait, wait, wait, that's not atomic at all! If power is lost after removing
+directory B from the root, directory B is still in the linked-list. We've
+just created a memory leak!
And to be honest, I don't have a clever solution for this case. As a
side-effect of using multiple pointers in the threaded tree, the littlefs
@@ -969,5 +969,5 @@ So, to summarize:
10. Any case where an atomic operation is not possible, it is taken care of
by a deorphan step that occurs on the first allocation after boot
-Welp, that's the little filesystem. Thanks for reading!
+That's the little filesystem. Thanks for reading!