From fe74f7b5cdc8d12dbcb7e79ba32625223d0cf5ab Mon Sep 17 00:00:00 2001
From: enh-google <53129816+enh-google@users.noreply.github.com>
Date: Fri, 24 Jul 2020 12:38:47 -0700
Subject: [PATCH] avoid ableist language
---
GoForCPPProgrammers.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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.