diff --git a/libraries/matrix/api/src/main/kotlin/io/element/android/libraries/matrix/api/roomlist/RoomListFilter.kt b/libraries/matrix/api/src/main/kotlin/io/element/android/libraries/matrix/api/roomlist/RoomListFilter.kt index 4af0e463fd..271b1d9b24 100644 --- a/libraries/matrix/api/src/main/kotlin/io/element/android/libraries/matrix/api/roomlist/RoomListFilter.kt +++ b/libraries/matrix/api/src/main/kotlin/io/element/android/libraries/matrix/api/roomlist/RoomListFilter.kt @@ -20,7 +20,7 @@ sealed interface RoomListFilter { companion object { /** * 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 { return All(filters.toList())