diff options
| author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2018-11-29 13:10:46 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-11-29 13:10:46 +0100 |
| commit | e3635f229827e6f559c13a81abde053c00108cd5 (patch) | |
| tree | 4b7bc0c58bff10fb9b046709d75e101951a5a84f /src/libstd/thread | |
| parent | 87fa7dc69a21766327c4f514e4c8545cdcf27dbc (diff) | |
| parent | 73b656bbb306047d072b41321153b62c5a4a2b0d (diff) | |
| download | rust-e3635f229827e6f559c13a81abde053c00108cd5.tar.gz rust-e3635f229827e6f559c13a81abde053c00108cd5.zip | |
Rollup merge of #56289 - marius:patch-1, r=cramertj
Fix small typo in comment of thread::stack_size
Diffstat (limited to 'src/libstd/thread')
| -rw-r--r-- | src/libstd/thread/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/thread/mod.rs b/src/libstd/thread/mod.rs index 8a845efd413..3a9f3ec5c6f 100644 --- a/src/libstd/thread/mod.rs +++ b/src/libstd/thread/mod.rs @@ -326,7 +326,7 @@ impl Builder { /// Sets the size of the stack (in bytes) for the new thread. /// /// The actual stack size may be greater than this value if - /// the platform specifies minimal stack size. + /// the platform specifies a minimal stack size. /// /// For more information about the stack size for threads, see /// [this module-level documentation][stack-size]. |
