diff options
author | Erik Johnston <erik@matrix.org> | 2016-09-17 14:59:40 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2016-09-17 14:59:40 +0100 |
commit | a298331de42fd0931e9a4d068925ac8ff1c52f46 (patch) | |
tree | 60eea68c5dadab3c7d58c6d02156123470af69e9 /synapse | |
parent | Fix and clean up publicRooms pagination (diff) | |
download | synapse-a298331de42fd0931e9a4d068925ac8ff1c52f46.tar.xz |
Spelling
Diffstat (limited to 'synapse')
-rw-r--r-- | synapse/handlers/room_list.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/synapse/handlers/room_list.py b/synapse/handlers/room_list.py index a33b644d0f..ff7a7a06b4 100644 --- a/synapse/handlers/room_list.py +++ b/synapse/handlers/room_list.py @@ -135,7 +135,7 @@ class RoomListHandler(BaseHandler): rooms_to_scan = rooms_to_scan[:since_token.current_limit] rooms_to_scan.reverse() - # If there's not search filter just limit the range since we'll + # If there's no search filter just limit the range since we'll # return the vast majority of things. if limit and not search_filter: rooms_to_scan = rooms_to_scan[:limit + 1] |