diff options
| author | Richo Healey <richo@psych0tik.net> | 2015-03-27 10:58:12 -0700 |
|---|---|---|
| committer | Richo Healey <richo@psych0tik.net> | 2015-03-27 10:58:12 -0700 |
| commit | 13e4270bf9468e9213b6cc16ca217062791599a0 (patch) | |
| tree | 89a410dd287837578bbb110aa29f9e941bc9fae6 /src/doc/reference.md | |
| parent | 199bdcfeff5cfafd1f8e8ff583d7209272469879 (diff) | |
| download | rust-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.md | 2 |
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 |
