Skip to content

Commit 7b5a147

Browse files
Fix std::vector reference
Co-authored-by: A Thousand Ships <[email protected]>
1 parent 24acaa1 commit 7b5a147

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contributing/development/core_and_modules/core_types.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ memnew/memdelete also use a little C++ magic and notify Objects right
104104
after they are created, and right before they are deleted.
105105

106106
For dynamic memory, use one of Godot's sequence types such as ``Vector<>``
107-
or ``LocalVector<>``. ``Vector<>`` behaves much like an STL ``Vector<>``,
107+
or ``LocalVector<>``. ``Vector<>`` behaves much like an STL ``std::vector<>``,
108108
but is simpler and uses Copy-On-Write (CoW) semantics. CoW copies of
109109
``Vector<>`` can safely access the same data from different threads, but
110110
several threads cannot access the same ``Vector<>`` instance safely.

0 commit comments

Comments
 (0)