Skip to content

Commit

Permalink
Fix Bookkeeper docs. (#661)
Browse files Browse the repository at this point in the history
Signed-off-by: Shabinder Singh <[email protected]>
  • Loading branch information
Shabinder authored Oct 5, 2024
1 parent 51c78cb commit 855e3a4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/mutable-store/building/implementations/bookkeeper.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
interface Bookkeeper<Key : Any> {
companion object {
fun <Key : Any> by(
maxLastFailedSync: suspend (key: Key) -> Long?,
getLastFailedSync: suspend (key: Key) -> Long?,
setLastFailedSync: suspend (key: Key, timestamp: Long) -> Boolean,
clear: suspend (key: Key) -> Boolean,
clearAll: suspend () -> Boolean
Expand Down Expand Up @@ -101,4 +101,4 @@ private fun BookkeepingDatabase.maxLastFailedSync(notes: List<Note>): Long? {
}
return maxLastFailedSync
}
```
```

0 comments on commit 855e3a4

Please sign in to comment.