Skip to content

Commit 281113b

Browse files
matthiasbeyerMuscraft
authored andcommitted
Fix: "project" should be "package"
This was accidentially overlooked when writing the documentation. Signed-off-by: Matthias Beyer <[email protected]>
1 parent abf6b4e commit 281113b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/doc/src/reference/specifying-dependencies.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -472,7 +472,7 @@ Dependencies in the `[dependencies]`, `[dev-dependencies]`, `[build-dependencies
472472
`[workspace.dependencies]` definition of dependencies.
473473

474474
```toml
475-
[project]
475+
[package]
476476
name = "bar"
477477
version = "0.2.0"
478478

src/doc/src/reference/unstable.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1083,7 +1083,7 @@ The `filename` parameter is only available in the `[[bin]]` section of the manif
10831083
```toml
10841084
cargo-features = ["different-binary-name"]
10851085

1086-
[project]
1086+
[package]
10871087
name = "foo"
10881088
version = "0.0.1"
10891089

src/doc/src/reference/workspaces.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ regex = { version = "1.6.0", default-features = false, features = ["std"] }
202202

203203
```toml
204204
# [PROJECT_DIR]/bar/Cargo.toml
205-
[project]
205+
[package]
206206
name = "bar"
207207
version = "0.2.0"
208208

0 commit comments

Comments
 (0)