about summary refs log tree commit diff
path: root/src/libstd/task
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2013-10-28 12:06:26 -0700
committerbors <bors@rust-lang.org>2013-10-28 12:06:26 -0700
commit2ab4a6fab046769ddad48de557f64b0a97f86ce3 (patch)
treef64196e3007d03f863a07e4d318d67fe9555d56d /src/libstd/task
parente6102fc2fa72501ebf10ad8853b2a31332e6bdfd (diff)
parent436d8744101303ed1645f8fb1bc9b1add7b1ecf3 (diff)
downloadrust-2ab4a6fab046769ddad48de557f64b0a97f86ce3.tar.gz
rust-2ab4a6fab046769ddad48de557f64b0a97f86ce3.zip
auto merge of #10095 : huonw/rust/master, r=cmr
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.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/task/mod.rs b/src/libstd/task/mod.rs
index 3333b24a924..8efa185bbbd 100644
--- a/src/libstd/task/mod.rs
+++ b/src/libstd/task/mod.rs
@@ -526,8 +526,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.
      *