diff --git a/src/include/storage/index/generic_key.h b/src/include/storage/index/generic_key.h index 7771322fc..29ea975dc 100644 --- a/src/include/storage/index/generic_key.h +++ b/src/include/storage/index/generic_key.h @@ -71,7 +71,11 @@ class GenericKey { }; /** - * Function object returns true if lhs < rhs, used for trees + * Function object returns: + * < 0 if lhs < rhs + * > 0 if lhs > rhs + * = 0 if lhs = rhs + * Used for tree comparisons. */ template class GenericComparator {