We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42940fc commit f238d3eCopy full SHA for f238d3e
1 file changed
README.md
@@ -89,7 +89,7 @@ suspend fun getData(
89
#### Clearing cache
90
91
```kotlin
92
- retroCacheManager.clearAllByTag("tag1") // will remove all objects with corresponding tag
+retroCacheManager.clearAllByTag("tag1") // will remove all objects with corresponding tag
93
94
retroCacheManager.clearAll() // will remove all objects from the cache
95
```
@@ -105,7 +105,7 @@ retroCacheManager.clearAll() // will remove all objects from the cache
105
#### Scoping cache
106
107
108
- @Cache(scope = "logged_in_user_scope") // specify scope in annotation
+@Cache(scope = "logged_in_user_scope") // specify scope in annotation
109
@GET("fetch")
110
suspend fun getData(): Response<Data>
111
0 commit comments