]> git.proxmox.com Git - rustc.git/blobdiff - src/doc/book/src/ch14-03-cargo-workspaces.md
New upstream version 1.63.0+dfsg1
[rustc.git] / src / doc / book / src / ch14-03-cargo-workspaces.md
index a7e42aafcecec8466b2c73d45d7649aba669569a..942d61b46eb4274fdb9e1089ba54963632f32957 100644 (file)
@@ -24,11 +24,10 @@ $ cd add
 ```
 
 Next, in the *add* directory, we create the *Cargo.toml* file that will
-configure the entire workspace. This file won’t have a `[package]` section or
-the metadata we’ve seen in other *Cargo.toml* files. Instead, it will start
-with a `[workspace]` section that will allow us to add members to the workspace
-by specifying the path to the package with our binary crate; in this case,
-that path is *adder*:
+configure the entire workspace. This file won’t have a `[package]` section.
+Instead, it will start with a `[workspace]` section that will allow us to add
+members to the workspace by specifying the path to the package with our binary
+crate; in this case, that path is *adder*:
 
 <span class="filename">Filename: Cargo.toml</span>