Fix sentense in chapter 14 paragraph 2

This commit is contained in:
Leonid Bobrov
2018-11-06 03:08:38 +02:00
parent 555d654162
commit b4e76f3aa8

View File

@@ -362,9 +362,11 @@ Your crate will need a unique name. While youre working on a crate locally,
you can name a crate whatever youd like. However, crate names on
[crates.io](https://crates.io)<!-- ignore --> 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 hasnt, 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:
<span class="filename">Filename: Cargo.toml</span>