diff options
| author | Huon Wilson <dbau.pp+github@gmail.com> | 2013-10-27 11:05:55 +1100 |
|---|---|---|
| committer | Huon Wilson <dbau.pp+github@gmail.com> | 2013-10-27 11:05:55 +1100 |
| commit | 436d8744101303ed1645f8fb1bc9b1add7b1ecf3 (patch) | |
| tree | d44ea4d1bc590b466aa1ea023e4279ae7ee62689 /src/libstd/task | |
| parent | 3ae895360c89b27bee7f076fded1c99691bd057e (diff) | |
| download | rust-436d8744101303ed1645f8fb1bc9b1add7b1ecf3.tar.gz rust-436d8744101303ed1645f8fb1bc9b1add7b1ecf3.zip | |
Make the documentation for std::task::spawn_sched render correctly.
Currently each line is a separate bullet point in a list: http://static.rust-lang.org/doc/master/std/task/fn.spawn_sched.html
Diffstat (limited to 'src/libstd/task')
| -rw-r--r-- | src/libstd/task/mod.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/task/mod.rs b/src/libstd/task/mod.rs index e6f6536956c..08058b2fa6c 100644 --- a/src/libstd/task/mod.rs +++ b/src/libstd/task/mod.rs @@ -488,8 +488,8 @@ pub fn spawn_with<A:Send>(arg: A, f: ~fn(v: A)) { pub fn spawn_sched(mode: SchedMode, f: ~fn()) { /*! - * Creates a new task on a new or existing scheduler - + * Creates a new task on a new or existing scheduler. + * * When there are no more tasks to execute the * scheduler terminates. * |
