From 9ca8eb2925091c58987baaf3dc8b00e2ba6f3d83 Mon Sep 17 00:00:00 2001 From: Vortex Date: Fri, 15 Mar 2024 18:30:37 -0500 Subject: [PATCH] Fixed grammer --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index c1d3c0e50..ac0541969 100644 --- a/readme.md +++ b/readme.md @@ -11,7 +11,7 @@ BrowserFS is highly extensible, and includes a few built-in backends: - `AsyncMirror`: Use an asynchronous backend synchronously. Invaluable for Emscripten; let your Emscripten applications write to larger file stores with no additional effort! > [!NOTE] -> When constructed, `AsyncMirror` loads the entire contents of the async file system into a synchronous backend. It performs operations synchronous file system and then queues them to be mirrored onto the asynchronous backend. +> When constructed, `AsyncMirror` loads the entire contents of the async file system into a synchronous backend. It performs operations on the synchronous file system and then queues them to be mirrored onto the asynchronous backend. More backends can be defined by separate libraries, as long as they implement `FileSystem`.