diff options
author | Patrick Cloke <clokep@users.noreply.github.com> | 2020-10-23 12:38:40 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-23 12:38:40 -0400 |
commit | 34a5696f9338f1a1ec52203e3871a797a02138a9 (patch) | |
tree | 2a36c0a8365cb0024c3c09aa1b5762b9fdbcbd22 /synapse/push | |
parent | Fix handling of User-Agent headers with bad utf-8. (#8632) (diff) | |
download | synapse-34a5696f9338f1a1ec52203e3871a797a02138a9.tar.xz |
Fix typos and spelling errors. (#8639)
Diffstat (limited to 'synapse/push')
-rw-r--r-- | synapse/push/baserules.py | 2 | ||||
-rw-r--r-- | synapse/push/bulk_push_rule_evaluator.py | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/synapse/push/baserules.py b/synapse/push/baserules.py index 8047873ff1..2858b61fb1 100644 --- a/synapse/push/baserules.py +++ b/synapse/push/baserules.py @@ -37,7 +37,7 @@ def list_with_base_rules(rawrules, use_new_defaults=False): modified_base_rules = {r["rule_id"]: r for r in rawrules if r["priority_class"] < 0} # Remove the modified base rules from the list, They'll be added back - # in the default postions in the list. + # in the default positions in the list. rawrules = [r for r in rawrules if r["priority_class"] >= 0] # shove the server default rules for each kind onto the end of each diff --git a/synapse/push/bulk_push_rule_evaluator.py b/synapse/push/bulk_push_rule_evaluator.py index a701defcdd..d9b5478b53 100644 --- a/synapse/push/bulk_push_rule_evaluator.py +++ b/synapse/push/bulk_push_rule_evaluator.py @@ -390,12 +390,12 @@ class RulesForRoom: continue # If a user has left a room we remove their push rule. If they - # joined then we readd it later in _update_rules_with_member_event_ids + # joined then we re-add it later in _update_rules_with_member_event_ids ret_rules_by_user.pop(user_id, None) missing_member_event_ids[user_id] = event_id if missing_member_event_ids: - # If we have some memebr events we haven't seen, look them up + # If we have some member events we haven't seen, look them up # and fetch push rules for them if appropriate. logger.debug("Found new member events %r", missing_member_event_ids) await self._update_rules_with_member_event_ids( |