From 341a4645cc612e25b4c8a135b5e0e393c042d662 Mon Sep 17 00:00:00 2001 From: jw013 Date: Sat, 13 Apr 2024 12:45:08 -0400 Subject: [PATCH] Reword sentence describing workspace toml for clarity Judging by the commit history, the original sentence was written before the `[patch]` and `[profile]` sections were added and since those sections do not go underneath the workspace table the original sentence needed to be updated. --- src/doc/src/reference/workspaces.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/src/reference/workspaces.md b/src/doc/src/reference/workspaces.md index abd2feeca..ad0d4175c 100644 --- a/src/doc/src/reference/workspaces.md +++ b/src/doc/src/reference/workspaces.md @@ -15,7 +15,7 @@ The key points of workspaces are: sections in `Cargo.toml` are only recognized in the *root* manifest, and ignored in member crates' manifests. -In the `Cargo.toml`, the `[workspace]` table supports the following sections: +The root `Cargo.toml` of a workspace supports the following sections: * [`[workspace]`](#the-workspace-section) --- Defines a workspace. * [`resolver`](resolver.md#resolver-versions) --- Sets the dependency resolver to use.