Skip to content

Commit

Permalink
fix log output content
Browse files Browse the repository at this point in the history
  • Loading branch information
Shigekazu Fukuta committed Apr 30, 2024
1 parent 619605d commit dade6a1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ inline void validateKeys(
// when size of vectors are less than 2
if (query_keys.size() < 2) {
throw std::invalid_argument(
"The size of points is less than 2. base_keys.size() = " + std::to_string(query_keys.size()));
"The size of points is less than 2. query_keys.size() = " + std::to_string(query_keys.size()));
}

// when indices are not sorted
Expand Down

0 comments on commit dade6a1

Please sign in to comment.