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 <bastien@blender.org>2020-06-06 16:51:01 +0300
committerBastien Montagne <bastien@blender.org>2020-06-06 17:18:39 +0300
commit03a693922dbc440032dd91e28df26098b7b03530 (patch)
tree2d4d2e75b1e538d176004beb9e41aa2648481f4f /source/blender/makesrna/intern/rna_image.c
parent5198cb1813909be33a1a5cd5677d3a3287321578 (diff)
Cleanup: Fix typo and other issues in some comment.
Diffstat (limited to 'source/blender/makesrna/intern/rna_image.c')
-rw-r--r--source/blender/makesrna/intern/rna_image.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/makesrna/intern/rna_image.c b/source/blender/makesrna/intern/rna_image.c
index 73504200020..cbc376c863f 100644
--- a/source/blender/makesrna/intern/rna_image.c
+++ b/source/blender/makesrna/intern/rna_image.c
@@ -1097,9 +1097,9 @@ static void rna_def_image(BlenderRNA *brna)
prop, "Duration", "Duration (in frames) of the image (1 when not a video/sequence)");
RNA_def_property_clear_flag(prop, PROP_EDITABLE);
- /* NOTE about pixels/channels/is_floa:
- * this properties describes how image is stored internally (inside of ImBuf),
- * not how it was saved to disk or how it'll be saved on disk
+ /* NOTE about pixels/channels/is_float:
+ * These properties describe how the image is stored internally (inside of ImBuf),
+ * not how it was saved to disk or how it'll be saved on disk.
*/
prop = RNA_def_property(srna, "pixels", PROP_FLOAT, PROP_NONE);
RNA_def_property_flag(prop, PROP_DYNAMIC);