about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAaron Power <Aaronepower@users.noreply.github.com>2017-08-09 16:19:54 +0100
committerGitHub <noreply@github.com>2017-08-09 16:19:54 +0100
commit89087183fc98e672bb21487c50cc39d1b6af35f1 (patch)
treeba0fc56e08ea457e723ca52b112fd7f092d190e3
parent09c1b7486189196e51bcf4878def561c9f5b2736 (diff)
downloadrust-89087183fc98e672bb21487c50cc39d1b6af35f1.tar.gz
rust-89087183fc98e672bb21487c50cc39d1b6af35f1.zip
Update RELEASES.md
-rw-r--r--RELEASES.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/RELEASES.md b/RELEASES.md
index e62e218c6c3..7bf0bcab640 100644
--- a/RELEASES.md
+++ b/RELEASES.md
@@ -93,9 +93,9 @@ Cargo
 -----
 - [Cargo API token location moved from `~/.cargo/config` to
   `~/cargo/credentials`.][cargo/3978]
-- [Cargo will now build multiple `main.rs` binaries in different
-  directories.][cargo/4214] ie. Having `src/server/main.rs` and
-  `src/client/main.rs` generates `target/debug/server` and `target/debug/client`
+- [Cargo will now build `main.rs` binaries that are in sub-directories of
+  `src/bin`.][cargo/4214] ie. Having `src/bin/server/main.rs` and
+  `src/bin/client/main.rs` generates `target/debug/server` and `target/debug/client`
 - [You can now specify version of a binary when installed through
   `cargo install` using `--vers`.][cargo/4229]
 - [Added `--no-fail-fast` flag to cargo to run all benchmarks regardless of