Skip to content

Commit 60fdfbb

Browse files
authored
chore: fix typos (#17)
1 parent 3d6ab95 commit 60fdfbb

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/nostd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This workflow checks whether the library is able to run without the std library (e.g., embedded).
22
# This entire file should be removed if this crate does not support no-std. See check.yml for
3-
# information about how the concurrency cancelation and workflow triggering works
3+
# information about how the concurrency cancellation and workflow triggering works
44
permissions:
55
contents: read
66
on:

.github/workflows/safety.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# This workflow runs checks for unsafe code. In crates that don't have any unsafe code, this can be
22
# removed. Runs:
33
# - miri - detects undefined behavior and memory leaks
4-
# - address santizer - detects memory errors
4+
# - address sanitizer - detects memory errors
55
# - leak sanitizer - detects memory leaks
66
# - loom - Permutation testing for concurrent code https://crates.io/crates/loom
7-
# See check.yml for information about how the concurrency cancelation and workflow triggering works
7+
# See check.yml for information about how the concurrency cancellation and workflow triggering works
88
permissions:
99
contents: read
1010
on:

.github/workflows/scheduled.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Run scheduled (rolling) jobs on a nightly basis, as your crate may break independently of any
22
# given PR. E.g., updates to rust nightly and updates to this crates dependencies. See check.yml for
3-
# information about how the concurrency cancelation and workflow triggering works
3+
# information about how the concurrency cancellation and workflow triggering works
44
permissions:
55
contents: read
66
on:

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# requirements of this crate, and its dependencies
66
# - os-check: runs the test suite on mac and windows
77
# - coverage: runs the test suite and collects coverage information
8-
# See check.yml for information about how the concurrency cancelation and workflow triggering works
8+
# See check.yml for information about how the concurrency cancellation and workflow triggering works
99
permissions:
1010
contents: read
1111
on:
@@ -91,8 +91,8 @@ jobs:
9191
matrix:
9292
os: [macos-latest, windows-latest]
9393
steps:
94-
# if your project needs OpenSSL, uncommment this to fix Windows builds.
95-
# it's commented out by default as tthe install command takes 5-10m.
94+
# if your project needs OpenSSL, uncomment this to fix Windows builds.
95+
# it's commented out by default as the install command takes 5-10m.
9696
# - run: echo "VCPKG_ROOT=$env:VCPKG_INSTALLATION_ROOT" | Out-File -FilePath $env:GITHUB_ENV -Append
9797
# if: runner.os == 'Windows'
9898
# - run: vcpkg install openssl:x64-windows-static-md

0 commit comments

Comments
 (0)