book: english typo (#79)

This commit is contained in:
Christoph Dibak
2019-09-20 15:06:54 +02:00
committed by Ou Changkun
parent 0aa031f0f6
commit 8767bb89c4
2 changed files with 2 additions and 2 deletions

View File

@@ -22,7 +22,7 @@ int main() {
std::cout << "NULL == nullptr" << std::endl;
foo(0); // will call foo(int)
// foo(NULL); // doen't compile
// foo(NULL); // doesn't compile
foo(nullptr); // will call foo(char*)
return 0;
}