We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 24acaa1 commit 7b5a147Copy full SHA for 7b5a147
contributing/development/core_and_modules/core_types.rst
@@ -104,7 +104,7 @@ memnew/memdelete also use a little C++ magic and notify Objects right
104
after they are created, and right before they are deleted.
105
106
For dynamic memory, use one of Godot's sequence types such as ``Vector<>``
107
-or ``LocalVector<>``. ``Vector<>`` behaves much like an STL ``Vector<>``,
+or ``LocalVector<>``. ``Vector<>`` behaves much like an STL ``std::vector<>``,
108
but is simpler and uses Copy-On-Write (CoW) semantics. CoW copies of
109
``Vector<>`` can safely access the same data from different threads, but
110
several threads cannot access the same ``Vector<>`` instance safely.
0 commit comments