book: typo fixes (#148)

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
iaxax
2020-11-30 14:14:22 +08:00
committed by GitHub
parent 6dc07f6611
commit 6b911261fa
5 changed files with 9 additions and 9 deletions

View File

@@ -93,7 +93,7 @@ You should first compile the C code with `gcc`:
gcc -c foo.c
```
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):
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 link them together):
```bash
clang++ 1.1.cpp foo.o -std=c++2a -o 1.1