Skip to content

Commit 9f84981

Browse files
authored
Fix readme (#61)
* fix: error in the README file * Update CHANGELOG.md
1 parent 7751b01 commit 9f84981

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
### Fixed
11+
12+
Error in the README file.
13+
1014
## [1.1.0] - 2022-01-28
1115

1216
### Added

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,7 @@ is an implementation on top of the
213213
214214
// later on…
215215
216-
final mappedInfo = await jsonCache.value('secret')!;
216+
final mappedInfo = (await jsonCache.value('secret'))!;
217217
final originalInfo = mappedInfo.keys.first; // 'an secret info'
218218
```
219219

0 commit comments

Comments
 (0)