about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorBarosl Lee <vcs@barosl.com>2014-11-12 03:48:42 +0900
committerBarosl Lee <vcs@barosl.com>2014-11-12 03:48:42 +0900
commit5969bf663ef6ea4c62d27b88a957d401dad4227b (patch)
tree8399155619a94e3578e5c5439f0c864f6b0f2588 /src/libstd
parent8bf77fa786aae4993fa923f0826529bfb9ce1166 (diff)
Fix documentation bug
The first paragraph must be separated from the next paragraph.
Otherwise, rustdoc will consider the content of the latter as part of
the title.
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/os.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libstd/os.rs b/src/libstd/os.rs
index 7fd23321e2c..1402d3a3559 100644
--- a/src/libstd/os.rs
+++ b/src/libstd/os.rs
@@ -889,6 +889,7 @@ pub fn errno() -> uint {
 }
 
 /// Return the string corresponding to an `errno()` value of `errnum`.
+///
 /// # Example
 /// ```rust
 /// use std::os;