Skip to content

Commit

Permalink
chore: fix typos (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
0x61nas committed Dec 17, 2023
1 parent 3d6ab95 commit 60fdfbb
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nostd.yml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/safety.yml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scheduled.yml
Original file line number Diff line number Diff line change
@@ -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:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 60fdfbb

Please sign in to comment.