about summary refs log tree commit diff
path: root/src/libstd/sys
diff options
context:
space:
mode:
authorHiroki Noda <kubo39@gmail.com>2020-01-30 10:07:36 +0900
committerHiroki Noda <kubo39@gmail.com>2020-01-30 10:07:36 +0900
commit50ed6cbf9836a48c938e74bb28501ffbbe59585e (patch)
treeab4b5cc3d23cc129b18954f100844724aea27bb2 /src/libstd/sys
parent9ed29b6ff6aa2e048b09c27af8f62ee3040bdb37 (diff)
downloadrust-50ed6cbf9836a48c938e74bb28501ffbbe59585e.tar.gz
rust-50ed6cbf9836a48c938e74bb28501ffbbe59585e.zip
Fix typo.
Diffstat (limited to 'src/libstd/sys')
-rw-r--r--src/libstd/sys/unix/thread.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/sys/unix/thread.rs b/src/libstd/sys/unix/thread.rs
index a5b34eeec28..58b4839f902 100644
--- a/src/libstd/sys/unix/thread.rs
+++ b/src/libstd/sys/unix/thread.rs
@@ -426,7 +426,7 @@ pub mod guard {
 }
 
 // glibc >= 2.15 has a __pthread_get_minstack() function that returns
-// PTHREAD_STACK_MIN plus however many bytes are needed for thread-local
+// PTHREAD_STACK_MIN plus how many bytes are needed for thread-local
 // storage.  We need that information to avoid blowing up when a small stack
 // is created in an application with big thread-local storage requirements.
 // See #6233 for rationale and details.