From ba6ce123bac969ee896a776699a8fad651a0a1cd Mon Sep 17 00:00:00 2001 From: Isaac Andrade Date: Tue, 3 May 2016 08:29:44 -0700 Subject: [PATCH] Improve language. --- src/doc/reference.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/doc/reference.md b/src/doc/reference.md index 87eede0b7373..862e57d01605 100644 --- a/src/doc/reference.md +++ b/src/doc/reference.md @@ -846,15 +846,15 @@ extern crate std as ruststd; // linking to 'std' under another name ``` When naming Rust crates, hyphens are disallowed. However, Cargo packages may -make use of them. In such case, when `cargo.toml` doesn't specify a crate name, +make use of them. In such case, when `Cargo.toml` doesn't specify a crate name, Cargo will transparently replace `-` with `_` (Refer to [RFC 940] for more details). Here is an example: ```{.ignore} -// Importing the Cargo package hello-world/ -extern crate hello_world; // The crate name replaced the hyphen +// Importing the Cargo package hello-world +extern crate hello_world; // hyphen replaced with an underscore ``` [RFC 940]: https://github.com/rust-lang/rfcs/blob/master/text/0940-hyphens-considered-harmful.md