From 5c7a6ab6ae2ac66a0fbaec72976417c3ae638da4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Sampaio?= Date: Tue, 24 Sep 2024 20:50:43 +0100 Subject: [PATCH] Rephrase "not related to your code" Saying that license files or configuration files are not related to the code is a bit inaccurate. I think this phrasing is more descriptive. --- src/ch01-03-hello-cargo.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ch01-03-hello-cargo.md b/src/ch01-03-hello-cargo.md index dea721d38c..2056ebe713 100644 --- a/src/ch01-03-hello-cargo.md +++ b/src/ch01-03-hello-cargo.md @@ -106,8 +106,8 @@ and we have a *Cargo.toml* configuration file in the top directory. Cargo expects your source files to live inside the *src* directory. The top-level project directory is just for README files, license information, -configuration files, and anything else not related to your code. Using Cargo -helps you organize your projects. There’s a place for everything, and +configuration files, and other files that don't need to be compiled. Using +Cargo helps you organize your projects. There’s a place for everything, and everything is in its place. If you started a project that doesn’t use Cargo, as we did with the “Hello,