From 60fdfbb65055e7e852820a75d9cf80b88d020702 Mon Sep 17 00:00:00 2001 From: Anas Date: Sun, 17 Dec 2023 17:52:41 +0200 Subject: [PATCH] chore: fix typos (#17) --- .github/workflows/nostd.yml | 2 +- .github/workflows/safety.yml | 4 ++-- .github/workflows/scheduled.yml | 2 +- .github/workflows/test.yml | 6 +++--- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/nostd.yml b/.github/workflows/nostd.yml index 93a1698..c12227a 100644 --- a/.github/workflows/nostd.yml +++ b/.github/workflows/nostd.yml @@ -1,6 +1,6 @@ # This workflow checks whether the library is able to run without the std library (e.g., embedded). # This entire file should be removed if this crate does not support no-std. See check.yml for -# information about how the concurrency cancelation and workflow triggering works +# information about how the concurrency cancellation and workflow triggering works permissions: contents: read on: diff --git a/.github/workflows/safety.yml b/.github/workflows/safety.yml index afea8df..6bdd055 100644 --- a/.github/workflows/safety.yml +++ b/.github/workflows/safety.yml @@ -1,10 +1,10 @@ # This workflow runs checks for unsafe code. In crates that don't have any unsafe code, this can be # removed. Runs: # - miri - detects undefined behavior and memory leaks -# - address santizer - detects memory errors +# - address sanitizer - detects memory errors # - leak sanitizer - detects memory leaks # - loom - Permutation testing for concurrent code https://crates.io/crates/loom -# See check.yml for information about how the concurrency cancelation and workflow triggering works +# See check.yml for information about how the concurrency cancellation and workflow triggering works permissions: contents: read on: diff --git a/.github/workflows/scheduled.yml b/.github/workflows/scheduled.yml index 15b1a7c..02aa275 100644 --- a/.github/workflows/scheduled.yml +++ b/.github/workflows/scheduled.yml @@ -1,6 +1,6 @@ # Run scheduled (rolling) jobs on a nightly basis, as your crate may break independently of any # given PR. E.g., updates to rust nightly and updates to this crates dependencies. See check.yml for -# information about how the concurrency cancelation and workflow triggering works +# information about how the concurrency cancellation and workflow triggering works permissions: contents: read on: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 59028e1..b98103d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -5,7 +5,7 @@ # requirements of this crate, and its dependencies # - os-check: runs the test suite on mac and windows # - coverage: runs the test suite and collects coverage information -# See check.yml for information about how the concurrency cancelation and workflow triggering works +# See check.yml for information about how the concurrency cancellation and workflow triggering works permissions: contents: read on: @@ -91,8 +91,8 @@ jobs: matrix: os: [macos-latest, windows-latest] steps: - # if your project needs OpenSSL, uncommment this to fix Windows builds. - # it's commented out by default as tthe install command takes 5-10m. + # if your project needs OpenSSL, uncomment this to fix Windows builds. + # it's commented out by default as the install command takes 5-10m. # - run: echo "VCPKG_ROOT=$env:VCPKG_INSTALLATION_ROOT" | Out-File -FilePath $env:GITHUB_ENV -Append # if: runner.os == 'Windows' # - run: vcpkg install openssl:x64-windows-static-md