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:
Diffstat (limited to 'source/blender/makesrna/intern/rna_internal.h')
-rw-r--r--source/blender/makesrna/intern/rna_internal.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/rna_internal.h b/source/blender/makesrna/intern/rna_internal.h
index a5dd4f58d5b..87e35c09b12 100644
--- a/source/blender/makesrna/intern/rna_internal.h
+++ b/source/blender/makesrna/intern/rna_internal.h
@@ -325,11 +325,11 @@ typedef struct ArrayIterator {
void *free_ptr; /* will be free'd if set */
int itemsize;
- /* array length with no skip functins applied, take care not to compare against index from animsys or python indicies */
+ /* array length with no skip functins applied, take care not to compare against index from animsys or python indices */
int length;
/* optional skip function, when set the array as viewed by rna can contain only a subset of the members.
- * this changes indicies so quick array index lookups are not possible when skip function is used. */
+ * this changes indices so quick array index lookups are not possible when skip function is used. */
IteratorSkipFunc skip;
} ArrayIterator;