Skip to content

Commit

Permalink
Correct docstring to match implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
tmadlener committed Nov 8, 2023
1 parent 1156ceb commit 9321d90
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/rootUtils.h
Original file line number Diff line number Diff line change
Expand Up @@ -273,10 +273,10 @@ inline std::vector<std::string> sortAlphabeticaly(std::vector<std::string> strin
}

/**
* Check whether existingIds and candidateIds both contain the same collection
* Ids / hashes. Returns false if the two vectors differ in content. Inputs can
* have random order wrt each other, but the assumption is that all the ids are
* unique in each vector.
* Check whether existingColls and candidateColls both contain the same
* collection names. Returns false if the two vectors differ in content. Inputs
* can have random order wrt each other, but the assumption is that each vector
* only contains unique names.
*/
inline bool checkConsistentColls(const std::vector<std::string>& existingColls,
const std::vector<std::string>& candidateColls) {
Expand Down

0 comments on commit 9321d90

Please sign in to comment.