Skip to content

Commit 5e25310

Browse files
authored
book: fix anchor link (changkun#181)
1 parent 4cb055f commit 5e25310

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

book/en-us/01-intro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ For some force majeure and historical reasons, we had to use some C code (even o
5555

5656
![Figure 1.2: Compatabilities between ISO C and ISO C++](../../assets/figures/comparison.png)
5757

58-
From now on, you should have the idea that "C++ is **not** a superset of C" in your mind (and not from the beginning, later [References for further reading] (# further reading references) The difference between C++98 and C99 is given). When writing C++, you should also avoid using program styles such as `void*` whenever possible. When you have to use C, you should pay attention to the use of `extern "C"`, separate the C language code from the C++ code, and then unify the link, for instance:
58+
From now on, you should have the idea that "C++ is **not** a superset of C" in your mind (and not from the beginning, later [References for further reading](#further-readings) The difference between C++98 and C99 is given). When writing C++, you should also avoid using program styles such as `void*` whenever possible. When you have to use C, you should pay attention to the use of `extern "C"`, separate the C language code from the C++ code, and then unify the link, for instance:
5959

6060
```cpp
6161
// foo.h

0 commit comments

Comments
 (0)