diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8a95a3ac..7f977558 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Check Spelling - uses: crate-ci/typos@v1.28.1 + uses: crate-ci/typos@v1.29.0 check_format: strategy: matrix: diff --git a/src/components/validator/src/violation/constraint_violation_list.cr b/src/components/validator/src/violation/constraint_violation_list.cr index a1743d77..499aaaec 100644 --- a/src/components/validator/src/violation/constraint_violation_list.cr +++ b/src/components/validator/src/violation/constraint_violation_list.cr @@ -13,7 +13,7 @@ struct Athena::Validator::Violation::ConstraintViolationList end end - # Returns a new `AVD::Violation::ConstraintViolationInterface` that conists only of violations with the provided *error_code*. + # Returns a new `AVD::Violation::ConstraintViolationInterface` that consists only of violations with the provided *error_code*. def find_by_code(error_code : String) : AVD::Violation::ConstraintViolationListInterface self.class.new @violations.select &.code.==(error_code) end