Skip to content

Commit

Permalink
Merge branch 'main' into input-iterator
Browse files Browse the repository at this point in the history
  • Loading branch information
petervdonovan authored Jul 22, 2022
2 parents 3d4795f + d599126 commit b14aecb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/utils/vector.c
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ void* vector_pop(vector_t* v) {
* This can be used to set the value of the element or to read it.
* If the index is past the end of the vector, then the vector
* is automatically expanded and filled with NULL pointers as needed.
* If no element at `idx` has been previous set, then the value
* If no element at `idx` has been previously set, then the value
* pointed to by the returned pointer will be NULL.
*
* @param v The vector.
Expand Down
2 changes: 1 addition & 1 deletion core/utils/vector.h
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ void* vector_pop(vector_t* v);
* This can be used to set the value of the element or to read it.
* If the index is past the end of the vector, then the vector
* is automatically expanded and filled with NULL pointers as needed.
* If no element at `idx` has been previous set, then the value
* If no element at `idx` has been previously set, then the value
* pointed to by the returned pointer will be NULL.
*
* @param v The vector.
Expand Down

0 comments on commit b14aecb

Please # to comment.