From 7873d2b3f54aad00e8a28b720c544b0343e3a878 Mon Sep 17 00:00:00 2001 From: Victor Aremu Date: Mon, 24 Jun 2024 08:45:55 +0100 Subject: [PATCH] chore(docs): fix typo (#1489) --- plugins/store/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/store/README.md b/plugins/store/README.md index efabaf8e..01856fa5 100644 --- a/plugins/store/README.md +++ b/plugins/store/README.md @@ -127,7 +127,7 @@ fn main() { ### Loading Gracefully -If you call `load` on a `Store` that hasn't yet been written to the desk, it will return an error. You must handle this error if you want to gracefully continue and use the default store until you save it to the disk. The example above shows how to do this. +If you call `load` on a `Store` that hasn't yet been written to the disk, it will return an error. You must handle this error if you want to gracefully continue and use the default store until you save it to the disk. The example above shows how to do this. For example, this would cause a panic if the store has not yet been created: