[Bf-blender-cvs] [b6ad98729b2] master: UI: Spelling: fix wrong apostrophe

William Reynish noreply at git.blender.org
Thu Mar 21 16:36:30 CET 2019


Commit: b6ad98729b219579c7bf0dce1d893081822c0b9b
Author: William Reynish
Date:   Thu Mar 21 16:36:29 2019 +0100
Branches: master
https://developer.blender.org/rBb6ad98729b219579c7bf0dce1d893081822c0b9b

UI: Spelling: fix wrong apostrophe

===================================================================

M	source/blender/makesrna/intern/rna_object_force.c

===================================================================

diff --git a/source/blender/makesrna/intern/rna_object_force.c b/source/blender/makesrna/intern/rna_object_force.c
index 77934b721c5..e620a8f6526 100644
--- a/source/blender/makesrna/intern/rna_object_force.c
+++ b/source/blender/makesrna/intern/rna_object_force.c
@@ -1359,12 +1359,12 @@ static void rna_def_field(BlenderRNA *brna)
 
 	prop = RNA_def_property(srna, "apply_to_location", PROP_BOOLEAN, PROP_NONE);
 	RNA_def_property_boolean_sdna(prop, NULL, "flag", PFIELD_DO_LOCATION);
-	RNA_def_property_ui_text(prop, "Location", "Affect particles' location");
+	RNA_def_property_ui_text(prop, "Location", "Affect particle's location");
 	RNA_def_property_update(prop, 0, "rna_FieldSettings_update");
 
 	prop = RNA_def_property(srna, "apply_to_rotation", PROP_BOOLEAN, PROP_NONE);
 	RNA_def_property_boolean_sdna(prop, NULL, "flag", PFIELD_DO_ROTATION);
-	RNA_def_property_ui_text(prop, "Rotation", "Affect particles' dynamic rotation");
+	RNA_def_property_ui_text(prop, "Rotation", "Affect particle's dynamic rotation");
 	RNA_def_property_update(prop, 0, "rna_FieldSettings_update");
 
 	prop = RNA_def_property(srna, "use_absorption", PROP_BOOLEAN, PROP_NONE);



More information about the Bf-blender-cvs mailing list