Browse Source

Improve comment

pull/2954/head
Benoit Marty 4 months ago
parent
commit
a997289e7e
  1. 2
      libraries/matrix/api/src/main/kotlin/io/element/android/libraries/matrix/api/roomlist/RoomListFilter.kt

2
libraries/matrix/api/src/main/kotlin/io/element/android/libraries/matrix/api/roomlist/RoomListFilter.kt

@ -20,7 +20,7 @@ sealed interface RoomListFilter {
companion object { companion object {
/** /**
* Create a filter that matches all the given filters. * Create a filter that matches all the given filters.
* If not filters are provided, all the room will match. * If no filters are provided, all the rooms will match.
*/ */
fun all(vararg filters: RoomListFilter): RoomListFilter { fun all(vararg filters: RoomListFilter): RoomListFilter {
return All(filters.toList()) return All(filters.toList())

Loading…
Cancel
Save