about summary refs log tree commit diff
path: root/src/doc/reference.md
diff options
context:
space:
mode:
authorRicho Healey <richo@psych0tik.net>2015-03-27 10:58:12 -0700
committerRicho Healey <richo@psych0tik.net>2015-03-27 10:58:12 -0700
commit13e4270bf9468e9213b6cc16ca217062791599a0 (patch)
tree89a410dd287837578bbb110aa29f9e941bc9fae6 /src/doc/reference.md
parent199bdcfeff5cfafd1f8e8ff583d7209272469879 (diff)
downloadrust-13e4270bf9468e9213b6cc16ca217062791599a0.tar.gz
rust-13e4270bf9468e9213b6cc16ca217062791599a0.zip
Unquote all crate names without underscores
Diffstat (limited to 'src/doc/reference.md')
-rw-r--r--src/doc/reference.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/reference.md b/src/doc/reference.md
index 32088b2ab67..b39a4f7b516 100644
--- a/src/doc/reference.md
+++ b/src/doc/reference.md
@@ -980,7 +980,7 @@ extern crate pcre;
 
 extern crate std; // equivalent to: extern crate std as std;
 
-extern crate "std" as ruststd; // linking to 'std' under another name
+extern crate std as ruststd; // linking to 'std' under another name
 ```
 
 ##### Use declarations