[Bf-blender-cvs] [0215caeac2a] master: Cleanup: fix typo.

Bastien Montagne noreply at git.blender.org
Mon Jan 7 14:31:11 CET 2019


Commit: 0215caeac2ad013fa03e2799049f5358d951ebfa
Author: Bastien Montagne
Date:   Mon Jan 7 14:04:23 2019 +0100
Branches: master
https://developer.blender.org/rB0215caeac2ad013fa03e2799049f5358d951ebfa

Cleanup: fix typo.

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

M	source/blender/python/intern/bpy_rna_id_collection.c

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

diff --git a/source/blender/python/intern/bpy_rna_id_collection.c b/source/blender/python/intern/bpy_rna_id_collection.c
index 0aed853c66b..d2d08a37d81 100644
--- a/source/blender/python/intern/bpy_rna_id_collection.c
+++ b/source/blender/python/intern/bpy_rna_id_collection.c
@@ -96,11 +96,11 @@ static int foreach_libblock_id_user_map_callback(
 		}
 
 		if ((GS(self_id->name) == ID_OB) && (id_p == (ID **)&((Object *)self_id)->proxy_from)) {
-			/* We skip proxy_from here, since it some internal pointer which is not irrelevant info for py/API level. */
+			/* We skip proxy_from here, since it's some internal pointer which is not relevant info for py/API level. */
 			return IDWALK_RET_NOP;
 		}
 		else if ((GS(self_id->name) == ID_KE) && (id_p == (ID **)&((Key *)self_id)->from)) {
-			/* We skip from here, since it some internal pointer which is not irrelevant info for py/API level. */
+			/* We skip from here, since it's some internal pointer which is not relevant info for py/API level. */
 			return IDWALK_RET_NOP;
 		}



More information about the Bf-blender-cvs mailing list