about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2012-01-23 16:49:29 -0800
committerBrian Anderson <banderson@mozilla.com>2012-01-23 16:49:29 -0800
commit24b425567ccab35b3fd41762f574c83e16295a26 (patch)
tree60502f6f37547f95937ad9816d673da943fb1859
parent4e2d8d8051d96288ed52fdc897008b95cee43458 (diff)
downloadrust-24b425567ccab35b3fd41762f574c83e16295a26.tar.gz
rust-24b425567ccab35b3fd41762f574c83e16295a26.zip
wip
-rw-r--r--src/libcore/core.rc12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/libcore/core.rc b/src/libcore/core.rc
index 4d3384e7149..cd61222f69f 100644
--- a/src/libcore/core.rc
+++ b/src/libcore/core.rc
@@ -13,13 +13,15 @@
     "The core library provides functionality that is closely tied to \
      the Rust built-in types and runtime services, or that is used in nearly \
      every non-trivial program.\
-     \
+     \n\n\
      The core library is linked by default to all crates and the contents \
      imported. The effect is as though the user had written the following: \
-     \
-     > use core; \
-     > import core::*; \
-     \
+     \n\n\
+     ~~~\n\
+     use core; \n\
+     import core::*;\n\
+     ~~~\n\
+     \n\
      This behavior can be disabled with the `--no-core` compiler flag."
 )];