From 2ec07bfe924e3d7120b31fddeee66b1fc6c3c65f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9on=20Avic=20Simmons?= Date: Sat, 19 Sep 2026 05:05:43 -0400 Subject: [PATCH] docs: fix 2 typos in typo --- fixbackend/cloud_accounts/schemas.py | 2 +- fixbackend/domain_events/events.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/fixbackend/cloud_accounts/schemas.py b/fixbackend/cloud_accounts/schemas.py index d9182e02..0bbab5d8 100644 --- a/fixbackend/cloud_accounts/schemas.py +++ b/fixbackend/cloud_accounts/schemas.py @@ -81,7 +81,7 @@ class CloudAccountRead(BaseModel): privileged: bool = Field(description="If privileged, the account can do some administrative tasks") last_scan_started_at: Optional[datetime] = Field(description="The time when the last scan started") last_scan_finished_at: Optional[datetime] = Field(description="The time when the last scan finished") - cf_stack_version: Optional[int] = Field(description="The version of the corresponting CF stack") + cf_stack_version: Optional[int] = Field(description="The version of the corresponding CF stack") errors: Optional[int] = Field(description="Number of errors during the last scan") @staticmethod diff --git a/fixbackend/domain_events/events.py b/fixbackend/domain_events/events.py index f00dd95f..7012ed87 100644 --- a/fixbackend/domain_events/events.py +++ b/fixbackend/domain_events/events.py @@ -175,7 +175,7 @@ class CloudAccountActiveToggled(Event): @frozen class CloudAccountScanToggled(Event): """ - This event is emitted when a cloud account is maarked active/non-active for scanning vulnerabilities. + This event is emitted when a cloud account is marked active/non-active for scanning vulnerabilities. """ kind: ClassVar[str] = "cloud_account_scan_toggled"