From 4cd75a6f822fe0a75fd502308d8f4674c31cebf3 Mon Sep 17 00:00:00 2001 From: king6cong Date: Tue, 21 Feb 2017 18:14:17 +0800 Subject: [PATCH] fix member path --- text/1525-cargo-workspace.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/text/1525-cargo-workspace.md b/text/1525-cargo-workspace.md index 0cd37ca85..2022fc825 100644 --- a/text/1525-cargo-workspace.md +++ b/text/1525-cargo-workspace.md @@ -256,13 +256,13 @@ configuration necessary, are: ```toml # crates/crate1/Cargo.toml [package] - workspace = "../root" + workspace = "../../root" ``` ```toml # crates/crate2/Cargo.toml [package] - workspace = "../root" + workspace = "../../root" ``` Projects like the compiler will likely need exhaustively explicit configuration.