Skip to content

Commit fcf31ea

Browse files
committed
docs(avl_array): update comments
1 parent 0e5f0b4 commit fcf31ea

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

avl_array.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141

4242

4343
/**
44-
* \param Key The key type. The type (class) must provide a 'greater than' operator
44+
* \param Key The key type. The type (class) must provide a 'less than' and 'equal to' operator
4545
* \param T The Data type
4646
* \param size_type Container size type
4747
* \param Size Container size
@@ -203,7 +203,7 @@ class avl_array
203203

204204
/**
205205
* Insert or update an element
206-
* \param key The key to insert. If the key already exists it is updated
206+
* \param key The key to insert. If the key already exists, it is updated
207207
* \param val Value to insert or update
208208
* \return True if the key was successfully inserted or updated, false if container is full
209209
*/

0 commit comments

Comments
 (0)