Skip to content

Commit e53e3af

Browse files
committed
codespell: Fix spelling mistakes caught by codespell.
Signed-off-by: Anders Kaseorg <[email protected]>
1 parent 8aea764 commit e53e3af

File tree

7 files changed

+10
-8
lines changed

7 files changed

+10
-8
lines changed

.codespellignore

+2
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,5 @@ uper
2626
slac
2727
couldn
2828
ges
29+
assertIn
30+
thirdparty

templates/corporate/case-studies/recurse-center-case-study.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ a lasting record for the community. “We even used a Zulip topic to coordinate
162162
for lunch, to let people have their uninterrupted focus time,” John says.
163163

164164
Since 2015, John has stayed connected with the RC alumni community on Zulip. “We
165-
have a channel for alumni checkins, where each alum uses a dedicated topic to
165+
have a channel for alumni check-ins, where each alum uses a dedicated topic to
166166
post updates,” John explains. Some alums drop by weekly, while others might come
167167
around once a year. “You can leave a note, and it’s OK if your friend reads it
168168
a few months later,” John says. “Compare that with Slack, where if someone

web/src/presence.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ export function status_from_raw(raw: RawPresence): PresenceStatus {
7272
}
7373
*/
7474

75-
/* Mark users as offline after this many seconds since their last checkin, */
75+
/* Mark users as offline after this many seconds since their last check-in, */
7676
const offline_threshold_secs = realm.server_presence_offline_threshold_seconds;
7777

7878
function age(timestamp = 0): number {

web/src/settings_profile_fields.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -468,7 +468,7 @@ function open_edit_form_modal(this: HTMLElement): void {
468468
const $profile_field_form = $("#edit-custom-profile-field-form-" + field_id);
469469

470470
// If it exceeds or equals the max limit, we are disabling option for display custom
471-
// profile field on user card and adding tooptip, unless the field is already checked.
471+
// profile field on user card and adding tooltip, unless the field is already checked.
472472
if (display_in_profile_summary_fields_limit_reached && !field.display_in_profile_summary) {
473473
$profile_field_form
474474
.find("input[name=display_in_profile_summary]")

zerver/actions/presence.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -129,9 +129,9 @@ def do_update_user_presence(
129129
# sending an immediate presence update via the events system that this user is now online,
130130
# rather than waiting for other clients to poll the presence update.
131131
# Sending these presence update events adds load to the system, so we only want to do this
132-
# if the user has missed a couple regular presence checkins
132+
# if the user has missed a couple regular presence check-ins
133133
# (so their state is at least 2 * PRESENCE_PING_INTERVAL_SECS + 10 old),
134-
# and also is under the risk of being shown by clients as offline before the next regular presence checkin
134+
# and also is under the risk of being shown by clients as offline before the next regular presence check-in
135135
# (so at least `settings.OFFLINE_THRESHOLD_SECS - settings.PRESENCE_PING_INTERVAL_SECS - 10`).
136136
# These two values happen to be the same in the default configuration.
137137
seconds=settings.OFFLINE_THRESHOLD_SECS - settings.PRESENCE_PING_INTERVAL_SECS - 10

zerver/lib/rate_limiter.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -226,10 +226,10 @@ def need_to_limit(cls, entity_key: str, time_window: int, max_count: int) -> Tup
226226
"""
227227
Returns a tuple of `(rate_limited, time_till_free)`.
228228
For simplicity, we have loosened the semantics here from
229-
- each key may make atmost `count * (t / window)` request within any t
229+
- each key may make at most `count * (t / window)` request within any t
230230
time interval.
231231
to
232-
- each key may make atmost `count * [(t / window) + 1]` request within
232+
- each key may make at most `count * [(t / window) + 1]` request within
233233
any t time interval.
234234
Thus, we only need to store reset_times for each key which will be less
235235
memory-intensive. This also has the advantage that you can only ever

zerver/tests/test_push_notifications.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2659,7 +2659,7 @@ def test_deleted_realm(self) -> None:
26592659
)
26602660

26612661
# Restore the deleted realm to verify that the bouncer correctly handles that
2662-
# by togglin off .realm_locally_deleted.
2662+
# by toggling off .realm_locally_deleted.
26632663
restored_zephyr_realm = do_create_realm("zephyr", "Zephyr")
26642664
restored_zephyr_realm.uuid = deleted_realm_uuid
26652665
restored_zephyr_realm.save()

0 commit comments

Comments
 (0)