diff --git a/core/src/main/java/org/kiwix/kiwixmobile/core/data/Repository.kt b/core/src/main/java/org/kiwix/kiwixmobile/core/data/Repository.kt index a0fe1d649..a1e52be12 100644 --- a/core/src/main/java/org/kiwix/kiwixmobile/core/data/Repository.kt +++ b/core/src/main/java/org/kiwix/kiwixmobile/core/data/Repository.kt @@ -134,7 +134,7 @@ class Repository @Inject internal constructor( Completable.fromAction { notesDao.deleteNote(noteUniqueKey) } .subscribeOn(io) - // this does note removes notes from storage only the list : remove txt files as well? + // this removes notes from storage only: remove txt files as well? override fun clearNotes(): Completable = Completable.fromAction(notesDao::deleteAllNotes).subscribeOn(io) }