We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b538d5a + 67a6c0a commit 8a64529Copy full SHA for 8a64529
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