Skip to content

Commit

Permalink
docs(avl_array): update comments
Browse files Browse the repository at this point in the history
  • Loading branch information
mpaland committed Aug 29, 2017
1 parent 0e5f0b4 commit fcf31ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions avl_array.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@


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

/**
* Insert or update an element
* \param key The key to insert. If the key already exists it is updated
* \param key The key to insert. If the key already exists, it is updated
* \param val Value to insert or update
* \return True if the key was successfully inserted or updated, false if container is full
*/
Expand Down

0 comments on commit fcf31ea

Please sign in to comment.