From 3a8875b307c992bceba1eb8f4fa26b1e282f4f39 Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Sun, 12 Jul 2020 10:00:42 +0100 Subject: [PATCH] Fix doc comments for File and Group --- include/loot/metadata/file.h | 3 +-- include/loot/metadata/group.h | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/include/loot/metadata/file.h b/include/loot/metadata/file.h index 2557f53c..0b9dd21c 100644 --- a/include/loot/metadata/file.h +++ b/include/loot/metadata/file.h @@ -65,8 +65,7 @@ public: /** * Check if two File objects are equal by comparing their fields. - * @returns True if the filenames are case-insensitively equal and all other - * fields are case-sensitively equal, false otherwise. + * @returns True if the objects' fields are equal, false otherwise. */ LOOT_API bool operator==(const File& rhs) const; diff --git a/include/loot/metadata/group.h b/include/loot/metadata/group.h index 5373c845..b6c5b83e 100644 --- a/include/loot/metadata/group.h +++ b/include/loot/metadata/group.h @@ -59,7 +59,7 @@ public: /** * Check if two Group objects are equal by comparing their names. - * @returns True if the names are case-sensitively equal, false otherwise. + * @returns True if the objects' fields are equal, false otherwise. */ LOOT_API bool operator==(const Group& rhs) const;