File tree 1 file changed +4
-2
lines changed
1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -244,7 +244,7 @@ impl Builder {
244
244
/// Generates the base configuration for spawning a thread, from which
245
245
/// configuration methods can be chained.
246
246
///
247
- /// If the [`stack_size`][stack_size] field is not specified, the stack size
247
+ /// If the [`stack_size`] field is not specified, the stack size
248
248
/// will be the `RUST_MIN_STACK` environment variable, if it is
249
249
/// not specified either, a sensible default size will be set (2MB as
250
250
/// of the writting of this doc).
@@ -265,7 +265,7 @@ impl Builder {
265
265
/// handler.join().unwrap();
266
266
/// ```
267
267
///
268
- /// [stack_size]: ../../std/thread/struct.Builder.html#method.stack_size
268
+ /// [` stack_size` ]: ../../std/thread/struct.Builder.html#method.stack_size
269
269
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
270
270
pub fn new ( ) -> Builder {
271
271
Builder {
@@ -721,6 +721,8 @@ struct Inner {
721
721
722
722
#[ derive( Clone ) ]
723
723
#[ stable( feature = "rust1" , since = "1.0.0" ) ]
724
+ /// A handle to a thread.
725
+ ///
724
726
/// Threads are represented via the `Thread` type, which you can get in one of
725
727
/// two ways:
726
728
///
You can’t perform that action at this time.
0 commit comments