diff --git a/README.md b/README.md
index 849b029..f70fcc2 100644
--- a/README.md
+++ b/README.md
@@ -209,7 +209,7 @@ Here are the properties, and what they mean -
| reducer | function
(state) => object | State reducer. reduces state to only those values you want to save.
By default, saves entire state |
| filter | function
(mutation) => boolean | Mutation filter. Look at `mutation.type` and return true
for only those ones which you want a persistence write to be triggered for.
Default returns true for all mutations |
| modules | string[] | List of modules you want to persist. (Do not write your own reducer if you want to use this) |
-| asyncStorage | boolean | Denotes if the store uses Promises (like localforage) or not (you must set this to true when suing something like localforage)
_**Default: false**_ |
+| asyncStorage | boolean | Denotes if the store uses Promises (like localforage) or not (you must set this to true when using something like localforage)
_**Default: false**_ |
| supportCircular | boolean | Denotes if the state has any circular references to itself (state.x === state)
_**Default: false**_ |
### Usage Notes