[Bf-blender-cvs] [eaad219ee71] master: Cleanup: spelling (correct c5c8c68eec93e57ed46be4371d8831e2f0fe3fe2)

Campbell Barton noreply at git.blender.org
Mon Sep 20 14:33:50 CEST 2021


Commit: eaad219ee7127fdeba08cef92f1d6cf4279a30af
Author: Campbell Barton
Date:   Mon Sep 20 22:27:51 2021 +1000
Branches: master
https://developer.blender.org/rBeaad219ee7127fdeba08cef92f1d6cf4279a30af

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).

===================================================================

M	source/blender/blenlib/BLI_uuid.h

===================================================================

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);
 
 /**



More information about the Bf-blender-cvs mailing list