From f6538da3d67ecd951fb557b858d1e6bcae7676fa Mon Sep 17 00:00:00 2001 From: zincsamael Date: Sun, 11 Sep 2022 12:41:04 -0700 Subject: [PATCH] book: typo fixes (#250) --- book/en-us/01-intro.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/en-us/01-intro.md b/book/en-us/01-intro.md index 0b203dd..03ecd88 100644 --- a/book/en-us/01-intro.md +++ b/book/en-us/01-intro.md @@ -43,7 +43,7 @@ Before learning modern C++, let's take a look at the main features that have dep - **C language style type conversion is deprecated (ie using `(convert_type)`) before variables, and `static_cast`, `reinterpret_cast`, `const_cast` should be used for type conversion.** -- **In particular, some of the C standard libraries that can be used are deprecated in the latest C++17 standard, such as ``, ``, `` and `` Wait** +- **In particular, some of the C standard libraries that can be used are deprecated in the latest C++17 standard, such as ``, ``, `` and `` etc.** - ... and many more