From 68a1f03e54af645b898f38572d256a468a6096bb Mon Sep 17 00:00:00 2001 From: nicolaiunrein Date: Mon, 19 Apr 2021 09:34:03 +0200 Subject: [PATCH] Fix typo in book While reading I found a little typo in the docs and corrected it. --- src/doc/src/reference/cargo-targets.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/src/reference/cargo-targets.md b/src/doc/src/reference/cargo-targets.md index a3a320a4caf..2c1a8fe3fc9 100644 --- a/src/doc/src/reference/cargo-targets.md +++ b/src/doc/src/reference/cargo-targets.md @@ -27,7 +27,7 @@ bench = false ### Binaries -Binary targets are executables programs that can be run after being compiled. +Binary targets are executable programs that can be run after being compiled. The default binary filename is `src/main.rs`, which defaults to the name of the package. Additional binaries are stored in the [`src/bin/` directory][package layout]. The settings for each binary can be [customized]