diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index c31236fc6..f21844c14 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -4,7 +4,7 @@ on: push: jobs: test: - name: test + name: Test env: CARGO_TERM_COLOR: always runs-on: ${{ matrix.os }} diff --git a/yara-x/Cargo.toml b/yara-x/Cargo.toml index 5e494f7a1..a392beb70 100644 --- a/yara-x/Cargo.toml +++ b/yara-x/Cargo.toml @@ -10,9 +10,9 @@ homepage.workspace = true rust-version.workspace = true [features] -# Enables constant folding. When costant folding is enabled, expressions +# Enables constant folding. When constant folding is enabled, expressions # like `2+2+2` and `true or false`, whose value can be determined at compile -# time, will be reduced to its final value, instead of producing cod that +# time, will be reduced to its final value, instead of producing code that # actually computes the expression. constant-folding = []