summary refs log tree commit diff
path: root/src/libstd/rand
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2014-12-29 16:36:20 -0800
committerAlex Crichton <alex@alexcrichton.com>2014-12-29 16:36:20 -0800
commit4717f07989fe4a5d8e473961b86a613d4bb07f35 (patch)
tree5f71acec09255b1fe107f248e5c4b7e88b0ace6a /src/libstd/rand
parent6fabf421f059a47ffa1faf570823c8511e73c4e2 (diff)
parentb8ffad5964e328340de0c03779577eb14caa16fc (diff)
downloadrust-4717f07989fe4a5d8e473961b86a613d4bb07f35.tar.gz
rust-4717f07989fe4a5d8e473961b86a613d4bb07f35.zip
rollup merge of #20248: steveklabnik/gh20038
A part of #20038

This is just the beginning of what needs to be done, but it's some of it.

/cc @aturon
Diffstat (limited to 'src/libstd/rand')
-rw-r--r--src/libstd/rand/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/rand/mod.rs b/src/libstd/rand/mod.rs
index c590c0f575e..292f3e056dd 100644
--- a/src/libstd/rand/mod.rs
+++ b/src/libstd/rand/mod.rs
@@ -18,7 +18,7 @@
 //! See the `distributions` submodule for sampling random numbers from
 //! distributions like normal and exponential.
 //!
-//! # Task-local RNG
+//! # Thread-local RNG
 //!
 //! There is built-in support for a RNG associated with each task stored
 //! in task-local storage. This RNG can be accessed via `task_rng`, or