Skip to content

Commit

Permalink
Address review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
Felix Raimundo committed May 9, 2017
1 parent c9e5eab commit 323a774
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/libstd/thread/mod.rs
Expand Up @@ -244,7 +244,7 @@ impl Builder {
/// Generates the base configuration for spawning a thread, from which
/// configuration methods can be chained.
///
/// If the [`stack_size`][stack_size] field is not specified, the stack size
/// If the [`stack_size`] field is not specified, the stack size
/// will be the `RUST_MIN_STACK` environment variable, if it is
/// not specified either, a sensible default size will be set (2MB as
/// of the writting of this doc).
Expand All @@ -265,7 +265,7 @@ impl Builder {
/// handler.join().unwrap();
/// ```
///
/// [stack_size]: ../../std/thread/struct.Builder.html#method.stack_size
/// [`stack_size`]: ../../std/thread/struct.Builder.html#method.stack_size
#[stable(feature = "rust1", since = "1.0.0")]
pub fn new() -> Builder {
Builder {
Expand Down Expand Up @@ -721,6 +721,8 @@ struct Inner {

#[derive(Clone)]
#[stable(feature = "rust1", since = "1.0.0")]
/// A handle to a thread.
///
/// Threads are represented via the `Thread` type, which you can get in one of
/// two ways:
///
Expand Down

0 comments on commit 323a774

Please sign in to comment.