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"