Skip to content
Snippets Groups Projects
Commit d2a3eb04 authored by Patrick Cloke's avatar Patrick Cloke
Browse files

Fix typos in comments.

parent b82d68c0
No related branches found
No related tags found
No related merge requests found
......@@ -509,7 +509,7 @@ def start_active_span_from_edu(
]
# For some reason jaeger decided not to support the visualization of multiple parent
# spans or explicitely show references. I include the span context as a tag here as
# spans or explicitly show references. I include the span context as a tag here as
# an aid to people debugging but it's really not an ideal solution.
references += _references
......
......@@ -93,7 +93,7 @@ class ReplicationStreamer:
"""
if not self.command_handler.connected():
# Don't bother if nothing is listening. We still need to advance
# the stream tokens otherwise they'll fall beihind forever
# the stream tokens otherwise they'll fall behind forever
for stream in self.streams:
stream.discard_updates_and_advance()
return
......
......@@ -301,7 +301,7 @@ class DeactivateAccountRestServlet(RestServlet):
requester = await self.auth.get_user_by_req(request)
# allow ASes to dectivate their own users
# allow ASes to deactivate their own users
if requester.app_service:
await self._deactivate_account_handler.deactivate_account(
requester.user.to_string(), erase
......
......@@ -35,7 +35,7 @@ class RemoteKey(DirectServeJsonResource):
Supports individual GET APIs and a bulk query POST API.
Requsts:
Requests:
GET /_matrix/key/v2/query/remote.server.example.com HTTP/1.1
......
......@@ -83,7 +83,7 @@ class Thumbnailer:
Args:
max_width: The largest possible width.
max_height: The larget possible height.
max_height: The largest possible height.
"""
if max_width * self.height < max_height * self.width:
......@@ -117,7 +117,7 @@ class Thumbnailer:
Args:
max_width: The largest possible width.
max_height: The larget possible height.
max_height: The largest possible height.
Returns:
BytesIO: the bytes of the encoded image ready to be written to disk
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment