From 5320d74bee00f89afe652ad24c6485b816584bea Mon Sep 17 00:00:00 2001 From: Byron Lagrone Date: Tue, 12 Jul 2022 09:34:21 -0500 Subject: [PATCH] Single grammar fix in chapter_01.md "Its" for the possessive form of it rather than the contraction It's (it is) --- book/src/chapter_1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/src/chapter_1.md b/book/src/chapter_1.md index fe37b016..90b6f2b0 100644 --- a/book/src/chapter_1.md +++ b/book/src/chapter_1.md @@ -22,7 +22,7 @@ Rust was designed to be a "better systems language" - that is, low-level like `C Rust is also designed to have a better ecosystem than C++. `Cargo` provides a complete package manager (so do `vcpkg`, `conan`, etc. in C++ land, but cargo is well-integrated), a complete build system (similar to `cmake`, `make`, `meson`, etc. - but standardized). It doesn't run on as many platforms as C or C++, but the list is ever-growing. -I tried Rust (after urging from friends), and found that while it doesn't replace C++ in my daily toolbox - there are times that it really helped get a project out of the door. It's syntax takes a bit of getting used to, but it really does drop in nicely to existing infrastructure. +I tried Rust (after urging from friends), and found that while it doesn't replace C++ in my daily toolbox - there are times that it really helped get a project out of the door. Its syntax takes a bit of getting used to, but it really does drop in nicely to existing infrastructure. ## Learning Rust