diff --git a/2018-edition/src/ch14-02-publishing-to-crates-io.md b/2018-edition/src/ch14-02-publishing-to-crates-io.md index 6238abb35..0ab6f2c5e 100644 --- a/2018-edition/src/ch14-02-publishing-to-crates-io.md +++ b/2018-edition/src/ch14-02-publishing-to-crates-io.md @@ -362,9 +362,11 @@ Your crate will need a unique name. While you’re working on a crate locally, you can name a crate whatever you’d like. However, crate names on [crates.io](https://crates.io) are allocated on a first-come, first-served basis. Once a crate name is taken, no one else can publish a crate -with that name. Search for the name you want to use on the site to find out -whether it has been used. If it hasn’t, edit the name in the *Cargo.toml* file -under `[package]` to use the name for publishing, like so: +with that name. Before attempting to publish a crate, search for the name you +want to use on the site and if it has been used by another crate, you will need +to find a name which hasn't been used yet, and edit the `name` field in the +*Cargo.toml* file under the `[package]` section to use the name for publishing, +like so: Filename: Cargo.toml