Skip to content

Commit b4db1e4

Browse files
authored
fix grammar errors
1 parent f5e0535 commit b4db1e4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/src/json_cache.dart

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ abstract class JsonCache {
33
/// Frees up storage space.
44
Future<void> clear();
55

6-
/// Updates data at [key], or creates a new cache line at [key] if there is no
6+
/// Updates data at [key] or creates a new cache line at [key] if there is no
77
/// previous data there.
88
Future<void> refresh(String key, Map<String, dynamic> data);
99

10-
/// Removes data from cache at [key] and returns it, or returns null if there
10+
/// Removes data from cache at [key] and returns it or returns null if there
1111
/// is no data at [key].
1212
Future<Map<String, dynamic>?> erase(String key);
1313

0 commit comments

Comments
 (0)