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:
authorBastien Montagne <montagne29@wanadoo.fr>2019-01-07 16:04:23 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2019-01-07 16:30:45 +0300
commit0215caeac2ad013fa03e2799049f5358d951ebfa (patch)
treec6da95cd2113f3dafc6f113645dad4ad2f6180f6 /source/blender/python
parentb786416106136ac5fd0b9ea55a0b0cf0c029243e (diff)
Cleanup: fix typo.
Diffstat (limited to 'source/blender/python')
-rw-r--r--source/blender/python/intern/bpy_rna_id_collection.c4
1 files changed, 2 insertions, 2 deletions
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;
}