about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-01-26 19:16:44 -0800
committerbors <bors@rust-lang.org>2014-01-26 19:16:44 -0800
commit0119e46204d1bc8937b8c3fb10e3f41a7ebb7733 (patch)
tree9ccf71b4332663baa3e8df7cb2df76ff77c5e441
parent74fedf325a2fc4cfe2f2f46c930de0cba56af5e4 (diff)
parent711726e51854502d2d68e201a3644fb45f529e94 (diff)
downloadrust-0119e46204d1bc8937b8c3fb10e3f41a7ebb7733.tar.gz
rust-0119e46204d1bc8937b8c3fb10e3f41a7ebb7733.zip
auto merge of #11823 : derekchiang/rust/fix-barrier-doc, r=alexcrichton
The original comments weren't rendered correctly by Markdown.
-rw-r--r--src/libextra/sync.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libextra/sync.rs b/src/libextra/sync.rs
index 9aefb6eaf76..60929b71e5f 100644
--- a/src/libextra/sync.rs
+++ b/src/libextra/sync.rs
@@ -686,6 +686,7 @@ impl<'a> RWLockReadMode<'a> {
 
 /// A barrier enables multiple tasks to synchronize the beginning
 /// of some computation.
+///
 /// ```rust
 /// use extra::sync::Barrier;
 ///