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 b1c1a20 commit f7a191dCopy full SHA for f7a191d
content/vector.md
@@ -136,7 +136,7 @@ list (indexing to position N requires N pointer dereferences).
136
By contract, vectors are stored in a packed format in memory, meaning indexing
137
is an O(1) operation, and the memory overhead per additional item in the vector
138
is much smaller (depending on the type of vector, which we'll cover in a
139
-moment). However, compared to lists, appending an item to a vector is
+moment). However, compared to lists, prepending an item to a vector is
140
relatively expensive: it requires creating a new buffer in memory, copying the
141
old values, and then adding the new value.
142
0 commit comments