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>2015-10-23 18:44:43 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-10-23 18:44:43 +0300
commitd5fb0e517ca998ce39c3c3e46274b91f6d7e5124 (patch)
tree5623f938943d603f9b411729542e97e299494fdd /source/blender/makesrna/intern/rna_text_api.c
parent4ff10119f79170f1d297361e8afd8cae732ea1f1 (diff)
Cleanup: rename 'datablocks' -> 'data-blocks'
Similar to addons -> add-ons, for reading it fits better to hyphenate.
Diffstat (limited to 'source/blender/makesrna/intern/rna_text_api.c')
-rw-r--r--source/blender/makesrna/intern/rna_text_api.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_text_api.c b/source/blender/makesrna/intern/rna_text_api.c
index de398bc10a6..2478ad0fe1a 100644
--- a/source/blender/makesrna/intern/rna_text_api.c
+++ b/source/blender/makesrna/intern/rna_text_api.c
@@ -62,7 +62,7 @@ void RNA_api_text(StructRNA *srna)
func = RNA_def_function(srna, "write", "rna_Text_write");
RNA_def_function_ui_description(func, "write text at the cursor location and advance to the end of the text block");
- prop = RNA_def_string(func, "text", "Text", 0, "", "New text for this datablock");
+ prop = RNA_def_string(func, "text", "Text", 0, "", "New text for this data-block");
RNA_def_property_flag(prop, PROP_REQUIRED);
}