From 6cb6538db6782d6ea2dce5fe685395cfb28b0316 Mon Sep 17 00:00:00 2001 From: Julien Cretin Date: Mon, 15 Mar 2021 12:10:13 +0100 Subject: [PATCH] Fix typography --- libraries/persistent_store/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/persistent_store/src/lib.rs b/libraries/persistent_store/src/lib.rs index e3735c3..4be15e3 100644 --- a/libraries/persistent_store/src/lib.rs +++ b/libraries/persistent_store/src/lib.rs @@ -27,7 +27,7 @@ //! //! The store is flash-efficient in the sense that it uses the storage [lifetime](Store::lifetime) //! efficiently. For each page, all words are written at least once between erase cycles and all -//! erase cycles are used. However, not all written words are user content: lifetime is also +//! erase cycles are used. However, not all written words are user content: Lifetime is also //! consumed with metadata and compaction. //! //! The store is extendable with other entries than key-values. It is essentially a framework