about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorDylan DPC <dylan.dpc@gmail.com>2020-01-31 01:21:27 +0100
committerGitHub <noreply@github.com>2020-01-31 01:21:27 +0100
commit8b2fa37b0756bf64c671ff523265e75c0b0ddd37 (patch)
treecac88875b31b9590e3522a4dac4f22af1e40f530 /src
parentf159045adc754a881ecf7061d9689af67c9bec46 (diff)
parentc870ca6217038e80138b69a88b2340b62859f52b (diff)
downloadrust-8b2fa37b0756bf64c671ff523265e75c0b0ddd37.tar.gz
rust-8b2fa37b0756bf64c671ff523265e75c0b0ddd37.zip
Rollup merge of #68660 - kubo39:patch-1, r=Dylan-DPC
Fix typo.
Diffstat (limited to 'src')
-rw-r--r--src/libstd/sys/unix/thread.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/sys/unix/thread.rs b/src/libstd/sys/unix/thread.rs
index a5b34eeec28..3ca778354e4 100644
--- a/src/libstd/sys/unix/thread.rs
+++ b/src/libstd/sys/unix/thread.rs
@@ -426,8 +426,8 @@ 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
-// storage.  We need that information to avoid blowing up when a small stack
+// PTHREAD_STACK_MIN plus bytes 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.
 #[cfg(target_os = "linux")]