From 610f9e23fd4379dfef6095a1dc412c8d900063ee Mon Sep 17 00:00:00 2001 From: "Victor M. Alvarez" Date: Thu, 18 May 2023 11:43:30 +0200 Subject: [PATCH] chore: fix typos --- .github/workflows/tests.yaml | 2 +- yara-x/Cargo.toml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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 = []