Cleanup: spelling (correct c5c8c68eec)

"iff" was intended as "if and only if". while exact use of abbreviations
isn't clear cut, I assumed this was a typo & it's not used anywhere
else in source/, expand to "only if" (suggested by Sybren).
This commit is contained in:
Campbell Barton
2021-09-20 22:27:51 +10:00
parent da4796ebf7
commit eaad219ee7

View File

@@ -42,10 +42,10 @@ UUID BLI_uuid_generate_random(void);
*/
UUID BLI_uuid_nil(void);
/** Return true iff this is the nil UUID. */
/** Return true only if this is the nil UUID. */
bool BLI_uuid_is_nil(UUID uuid);
/** Compare two UUIDs, return true if they are equal. */
/** Compare two UUIDs, return true only if they are equal. */
bool BLI_uuid_equal(UUID uuid1, UUID uuid2);
/**