diff --git a/docs/cpp/new-operator-cpp.md b/docs/cpp/new-operator-cpp.md index 36481ca911b..db4c18fe7e2 100644 --- a/docs/cpp/new-operator-cpp.md +++ b/docs/cpp/new-operator-cpp.md @@ -7,7 +7,7 @@ ms.assetid: 69fee812-1c28-4882-8fda-d1ad17860004 --- # new Operator (C++) -Allocates memory for an object or array of objects of *type-name* from the free store and returns a suitably typed, nonzero pointer to the object. +Allocates memory for an object or array of objects of *type-name* from the free store, commonly called the "heap", and returns a suitably typed, nonzero pointer to the object. > [!NOTE] > Microsoft C++ Component Extensions provides support for the **`new`** keyword to add vtable slot entries. For more information, see [new (new slot in vtable)](../extensions/new-new-slot-in-vtable-cpp-component-extensions.md)