We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 30243dd commit 67a6c0aCopy full SHA for 67a6c0a
library/std/src/thread/mod.rs
@@ -1114,7 +1114,7 @@ impl Thread {
1114
// Used only internally to construct a thread object without spawning
1115
// Panics if the name contains nuls.
1116
pub(crate) fn new(name: Option<CString>) -> Thread {
1117
- // We have to use `unsafe` here to constuct the `Parker` in-place,
+ // We have to use `unsafe` here to construct the `Parker` in-place,
1118
// which is required for the UNIX implementation.
1119
//
1120
// SAFETY: We pin the Arc immediately after creation, so its address never
0 commit comments