From d01a8ca15518104a239b67587c1738de73377847 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9on=20Avic=20Simmons?= Date: Mon, 15 Jun 2026 19:57:38 -0400 Subject: [PATCH 1/3] docs: fix typos in code comments --- bin/check-workspace-attachments.py | 2 +- cronjobs/src/commands/backport_records.py | 2 +- cronjobs/src/commands/refresh_signature.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bin/check-workspace-attachments.py b/bin/check-workspace-attachments.py index 17b82aacc..5792197cb 100644 --- a/bin/check-workspace-attachments.py +++ b/bin/check-workspace-attachments.py @@ -126,7 +126,7 @@ async def main(): "security-state-staging": "security-state-preview", "staging": "blocklists-preview", } - # do not bother intropsecting server info here... + # do not bother introspecting server info here... without_preview_collection = ["addons-bloomfilters"] all_preview_collections = [ (preview_buckets[bid], cid) diff --git a/cronjobs/src/commands/backport_records.py b/cronjobs/src/commands/backport_records.py index 297f60817..cd4dbcf16 100644 --- a/cronjobs/src/commands/backport_records.py +++ b/cronjobs/src/commands/backport_records.py @@ -95,7 +95,7 @@ def execute_backport( is_behind = to_create or to_update or to_delete has_pending_changes = is_behind if not is_behind: - # When this lambda is ran with a signed collection as + # When this lambda is run with a signed collection as # its destination, the destination collection is in the # workspace bucket, and will have a status field among # its metadata. diff --git a/cronjobs/src/commands/refresh_signature.py b/cronjobs/src/commands/refresh_signature.py index 40627c9c3..58ba5eeaf 100644 --- a/cronjobs/src/commands/refresh_signature.py +++ b/cronjobs/src/commands/refresh_signature.py @@ -60,7 +60,7 @@ def refresh_signature(): # 0. Figure out which was the source collection of this signed collection. source = get_signed_source(server_info, change) if source is None: - # Skip if change is not on a destination collection (eg. review collection) + # Skip if change is not on a destination collection (e.g. review collection) continue client = Client( From 2c6b7d272bcb36078f74d2fe3147f5dc4fcf69a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9on=20Avic=20Simmons?= Date: Thu, 18 Jun 2026 08:47:38 -0400 Subject: [PATCH 2/3] chore: add typos config to catch intropsecting Adds _typos.toml with an extend-words entry so `make lint` catches this misspelling going forward, as requested in review. --- _typos.toml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 _typos.toml diff --git a/_typos.toml b/_typos.toml new file mode 100644 index 000000000..76cf54de3 --- /dev/null +++ b/_typos.toml @@ -0,0 +1,5 @@ +# Typos config — extends the built-in dictionary with project-specific corrections +# See: https://github.com/crate-ci/typos/blob/master/docs/reference.md + +[default.extend-words] +intropsecting = "introspecting" From 3131fc1b701130a49a2392e5fc7a3cc3fc8e37c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9on=20Avic=20Simmons?= Date: Thu, 18 Jun 2026 09:39:13 -0400 Subject: [PATCH 3/3] Revert "chore: add typos config to catch intropsecting" This reverts commit 2c6b7d272bcb36078f74d2fe3147f5dc4fcf69a9. --- _typos.toml | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 _typos.toml diff --git a/_typos.toml b/_typos.toml deleted file mode 100644 index 76cf54de3..000000000 --- a/_typos.toml +++ /dev/null @@ -1,5 +0,0 @@ -# Typos config — extends the built-in dictionary with project-specific corrections -# See: https://github.com/crate-ci/typos/blob/master/docs/reference.md - -[default.extend-words] -intropsecting = "introspecting"