diff options
| author | Eric Huss <eric@huss.org> | 2021-06-25 13:18:56 -0700 |
|---|---|---|
| committer | Eric Huss <eric@huss.org> | 2021-06-25 13:18:56 -0700 |
| commit | 6235e6f93f85134b82500656d9120a58ec7ca328 (patch) | |
| tree | a7ca566edd67d8efbb5bdeb1b9f6eee34479483e /library/std/src/sys | |
| parent | f726dbe934d7dcf8ac72e5a8863703e64bb049ae (diff) | |
| download | rust-6235e6f93f85134b82500656d9120a58ec7ca328.tar.gz rust-6235e6f93f85134b82500656d9120a58ec7ca328.zip | |
Fix a few misspellings.
Diffstat (limited to 'library/std/src/sys')
| -rw-r--r-- | library/std/src/sys/hermit/mutex.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/sys/hermit/mutex.rs b/library/std/src/sys/hermit/mutex.rs index 885389ca54c..4221799114b 100644 --- a/library/std/src/sys/hermit/mutex.rs +++ b/library/std/src/sys/hermit/mutex.rs @@ -14,7 +14,7 @@ use crate::sys::hermit::abi; /// This structure behaves a lot like a common mutex. There are some differences: /// /// - By using busy waiting, it can be used outside the runtime. -/// - It is a so called ticket lock and is completly fair. +/// - It is a so called ticket lock and is completely fair. #[cfg_attr(target_arch = "x86_64", repr(align(128)))] #[cfg_attr(not(target_arch = "x86_64"), repr(align(64)))] struct Spinlock<T: ?Sized> { |
