Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2021-09-20 15:27:51 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-09-20 15:31:13 +0300
commiteaad219ee7127fdeba08cef92f1d6cf4279a30af (patch)
treef9db3aa7022e58bf91535e180a6b37d3a5daa742
parentda4796ebf7ea728dc81ff4b3c62410230520977a (diff)
Cleanup: spelling (correct c5c8c68eec93e57ed46be4371d8831e2f0fe3fe2)
"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).
-rw-r--r--source/blender/blenlib/BLI_uuid.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenlib/BLI_uuid.h b/source/blender/blenlib/BLI_uuid.h
index 15913cc1017..1ce294ed723 100644
--- a/source/blender/blenlib/BLI_uuid.h
+++ b/source/blender/blenlib/BLI_uuid.h
@@ -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);
/**