diff --git a/GoForCPPProgrammers.md b/GoForCPPProgrammers.md
index 60081fd9..a39e4c21 100644
--- a/GoForCPPProgrammers.md
+++ b/GoForCPPProgrammers.md
@@ -21,7 +21,7 @@ class methods, a class inheritance hierarchy, and virtual functions, Go
provides interfaces, which are discussed in more detail below.
Interfaces are also used where C++ uses templates.
-
new
vs. malloc
, or delete
vs. delete[]
vs. free
. There is no need to separately manage std::unique_ptr
, std::shared_ptr
, std::weak_ptr
, std::auto_ptr
, and ordinary, "dumb" pointers. Go's run-time system handles all of that error-prone code on the programmer's behalf.new
vs. malloc
, or delete
vs. delete[]
vs. free
. There is no need to separately manage std::unique_ptr
, std::shared_ptr
, std::weak_ptr
, std::auto_ptr
, and ordinary, non-smart "raw" pointers. Go's run-time system handles all of that error-prone code on the programmer's behalf.