Skip to content

Commit bf03793

Browse files
authored
Merge pull request #93 from yunusemredilber/creating-instance-docs-typo
Fix an incorrect variable name in the doc
2 parents 772fed9 + ff52a00 commit bf03793

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/creatinginstance.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ const MMKVwithID = new MMKVStorage.Loader()
3333

3434
// Then make are read/write requests
3535

36-
await MMKV.setStringAsync("string", "string");
36+
await MMKVwithID.setStringAsync("string", "string");
3737

38-
let string = await MMKV.getStringAsync("string");
38+
let string = await MMKVwithID.getStringAsync("string");
3939
```
4040

4141
## MMKV Instance with Encryption

0 commit comments

Comments
 (0)