From a3f9aaa3949cbd7f84ccb7c4f106bf0c29619fca Mon Sep 17 00:00:00 2001 From: Rayan Date: Fri, 28 Aug 2020 23:08:48 +0800 Subject: [PATCH] book/en: fix markdown syntax error (#121) Fixes #120 --- book/en-us/02-usability.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/en-us/02-usability.md b/book/en-us/02-usability.md index 1d423e4..ec75c37 100644 --- a/book/en-us/02-usability.md +++ b/book/en-us/02-usability.md @@ -23,7 +23,7 @@ traditional C++ treats `NULL` and `0` as the same thing, depending on how the compiler defines NULL, and some compilers define NULL as `((void*)0)` Some will define it directly as `0`. -C++ ** does not allow ** to implicitly convert `void *` to other types. +C++ **does not allow** to implicitly convert `void *` to other types. But if the compiler tries to define `NULL` as `((void*)0)`, then in the following code: ```cpp