Skip to content

Commit 804b48a

Browse files
authored
fix typo in document
1 parent 7cf8d4e commit 804b48a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ This AsyncStorage wrapper was initally created for a React-native offline notebo
1414

1515
I created my own implementation, because I want something simple, enough to handle `get/save/update/delete` methods, and save data in `JSON object`.
1616

17-
In addition, I want to automatically sync data change to each components, and trigger each component's re-rendering method.
17+
In addition, I want to automatically sync data change to each component, and trigger each component's re-rendering method.
1818

1919
## Installation
2020
run `npm install react-native-storage-unit --save`
@@ -111,13 +111,13 @@ delete one existing object.
111111
}
112112
}
113113
```
114-
after calling `deleteItem("your_unique_storage_key_2", singleObj2)`, `singleObj` will be removed.
114+
after calling `deleteItem("your_unique_storage_key_2", singleObj2)`, `singleObj2` will be removed.
115115

116116
```javascript
117117
{
118118
"your_unique_storage_key_2": {
119119
storageKey: "your_unique_storage_key_1",
120-
content: [singleObj1, singleObj2]
120+
content: [singleObj1]
121121
}
122122
}
123123
```

0 commit comments

Comments
 (0)