From fcf31ea2361a7b27b9856496247c413cd9939481 Mon Sep 17 00:00:00 2001 From: Marco Paland Date: Tue, 29 Aug 2017 14:29:34 +0200 Subject: [PATCH] docs(avl_array): update comments --- avl_array.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/avl_array.h b/avl_array.h index 04c965b..3cda842 100644 --- a/avl_array.h +++ b/avl_array.h @@ -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 @@ -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 */