From 8caa15f2093002cf415ae7a97d7b616b56400a0d Mon Sep 17 00:00:00 2001 From: Allen <50797312+RetownPlato@users.noreply.github.com> Date: Wed, 30 Sep 2020 09:40:01 +0800 Subject: [PATCH] fix a typo on line 96 comple -> compile --- book/en-us/01-intro.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/book/en-us/01-intro.md b/book/en-us/01-intro.md index aa5cd32e..94e401f7 100644 --- a/book/en-us/01-intro.md +++ b/book/en-us/01-intro.md @@ -93,7 +93,7 @@ You should first compile the C code with `gcc`: gcc -c foo.c ``` -Comple and output the `foo.o` file, and link the C++ code to the `.o` file using `clang++` (or both compile to `.o` and then unlink them together): +Compile and output the `foo.o` file, and link the C++ code to the `.o` file using `clang++` (or both compile to `.o` and then unlink them together): ```bash clang++ 1.1.cpp foo.o -std=c++2a -o 1.1 @@ -146,4 +146,4 @@ Don't worry at the moment, we will come to meet them in our later chapters. ## Licenses -Creative Commons License
This work was written by [Ou Changkun](https://changkun.de) and licensed under a Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License. The code of this repository is open sourced under the [MIT license](../../LICENSE). \ No newline at end of file +Creative Commons License
This work was written by [Ou Changkun](https://changkun.de) and licensed under a Creative Commons Attribution-NonCommercial-NoDerivatives 4.0 International License. The code of this repository is open sourced under the [MIT license](../../LICENSE).