about summary refs log tree commit diff
path: root/src/libstd/sys/common/stack.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2015-05-09 13:10:43 +0000
committerbors <bors@rust-lang.org>2015-05-09 13:10:43 +0000
commit497942332f919b1a952310a730349ca1b9524968 (patch)
tree08d010750e4e09312bddfef9485be7717fd75424 /src/libstd/sys/common/stack.rs
parent3906edf41e8faa0610daea954ffbda39841fbc0d (diff)
parent511a8d47ebc9791e9b564807a370e59b0a83f13c (diff)
downloadrust-497942332f919b1a952310a730349ca1b9524968.tar.gz
rust-497942332f919b1a952310a730349ca1b9524968.zip
Auto merge of #25243 - Manishearth:rollup, r=Manishearth
- Successful merges: #25216, #25227
- Failed merges: 
Diffstat (limited to 'src/libstd/sys/common/stack.rs')
-rw-r--r--src/libstd/sys/common/stack.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/sys/common/stack.rs b/src/libstd/sys/common/stack.rs
index 8dc3407db77..fadeebc8150 100644
--- a/src/libstd/sys/common/stack.rs
+++ b/src/libstd/sys/common/stack.rs
@@ -11,13 +11,13 @@
 //! Rust stack-limit management
 //!
 //! Currently Rust uses a segmented-stack-like scheme in order to detect stack
-//! overflow for rust tasks. In this scheme, the prologue of all functions are
+//! overflow for rust threads. In this scheme, the prologue of all functions are
 //! preceded with a check to see whether the current stack limits are being
 //! exceeded.
 //!
 //! This module provides the functionality necessary in order to manage these
 //! stack limits (which are stored in platform-specific locations). The
-//! functions here are used at the borders of the task lifetime in order to
+//! functions here are used at the borders of the thread lifetime in order to
 //! manage these limits.
 //!
 //! This function is an unstable module because this scheme for stack overflow