Skip to content

Commit 07b3096

Browse files
authored
Update README.md
1 parent 94dece2 commit 07b3096

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ This is a basic library that allows one to easily create dynamic arrays using a
1010
* You can track an array with a handler, returned from da_new().
1111
* You are advised to delete any dynamic array no longer needed. Simply call da_delete(h), where **h** is the handler.
1212
* You also have the option of clearing **all** dynamic arrays. Simply call da_delete_all(). It will clear all dynamic arrays from the stack, no exceptions.
13-
* All of the remaining functions are simply wrappers for the std::vector library. You can insert elements or arrays of elements at any location in a given dynamic array.
13+
* All of the remaining functions are simply wrappers for the std::vector library. You can insert elements or arrays of elements at any location in a given dynamic array. You can erase any element(s) at the beginning, middle, or end. You can resize, reserve, and shrink-to-fit.
1414
* All of the individual functions are documented in detail in the include/dynamic.h file.
1515

1616
## Build Instructions

0 commit comments

Comments
 (0)