UI: Spelling: fix wrong apostrophe

This commit is contained in:
William Reynish 2019-03-21 16:36:29 +01:00
parent ad8566db9b
commit b6ad98729b
1 changed files with 2 additions and 2 deletions

View File

@ -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);