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:
authorCampbell Barton <ideasman42@gmail.com>2020-09-16 08:28:02 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-09-16 08:28:02 +0300
commit7e8cba98b6f0f2372706901eae3ee19f3bc5c779 (patch)
tree9fc972dd4d61f665ac1eec47814bb6978202ce0e /source/blender/makesrna/intern/rna_nodetree.c
parentc7309c500750fe5acdd5d6e79a0405716402670e (diff)
Cleanup: spelling
Diffstat (limited to 'source/blender/makesrna/intern/rna_nodetree.c')
-rw-r--r--source/blender/makesrna/intern/rna_nodetree.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/rna_nodetree.c b/source/blender/makesrna/intern/rna_nodetree.c
index 3237f33835e..8c99a4cc1a1 100644
--- a/source/blender/makesrna/intern/rna_nodetree.c
+++ b/source/blender/makesrna/intern/rna_nodetree.c
@@ -3244,7 +3244,7 @@ static const EnumPropertyItem *renderresult_layers_add_enum(RenderLayer *rl)
while (rl) {
tmp.identifier = rl->name;
/* Little trick: using space char instead empty string
- * makes the item selectable in the dropdown. */
+ * makes the item selectable in the drop-down. */
if (rl->name[0] == '\0') {
tmp.name = " ";
}
@@ -3320,7 +3320,7 @@ static const EnumPropertyItem *renderresult_views_add_enum(RenderView *rv)
while (rv) {
tmp.identifier = rv->name;
/* Little trick: using space char instead empty string
- * makes the item selectable in the dropdown. */
+ * makes the item selectable in the drop-down. */
if (rv->name[0] == '\0') {
tmp.name = " ";
}