diff --git a/source/blender/editors/mesh/editmesh_tools.c b/source/blender/editors/mesh/editmesh_tools.c index f46721ddd62..20b0bf9e647 100644 --- a/source/blender/editors/mesh/editmesh_tools.c +++ b/source/blender/editors/mesh/editmesh_tools.c @@ -2679,7 +2679,7 @@ void MESH_OT_poke(wmOperatorType *ot) /* identifiers */ ot->name = "Poke Faces"; ot->idname = "MESH_OT_poke"; - ot->description = "Splits a face into a fan"; + ot->description = "Split a face into a fan"; /* api callbacks */ ot->exec = edbm_poke_face_exec; @@ -3910,7 +3910,7 @@ void MESH_OT_mark_freestyle_edge(wmOperatorType *ot) { /* identifiers */ ot->name = "Mark Freestyle Edge"; - ot->description = "(un)mark selected edges as Freestyle feature edges"; + ot->description = "(Un)mark selected edges as Freestyle feature edges"; ot->idname = "MESH_OT_mark_freestyle_edge"; /* api callbacks */ @@ -3971,7 +3971,7 @@ void MESH_OT_mark_freestyle_face(wmOperatorType *ot) { /* identifiers */ ot->name = "Mark Freestyle Face"; - ot->description = "(un)mark selected faces for exclusion from Freestyle feature edge detection"; + ot->description = "(Un)mark selected faces for exclusion from Freestyle feature edge detection"; ot->idname = "MESH_OT_mark_freestyle_face"; /* api callbacks */ diff --git a/source/blender/makesrna/intern/rna_linestyle.c b/source/blender/makesrna/intern/rna_linestyle.c index 3bc72a18e01..c28229c7bb4 100644 --- a/source/blender/makesrna/intern/rna_linestyle.c +++ b/source/blender/makesrna/intern/rna_linestyle.c @@ -610,7 +610,7 @@ static void rna_def_linestyle_modifiers(BlenderRNA *brna) RNA_def_property_float_sdna(prop, NULL, "error"); RNA_def_property_ui_text(prop, "Error", "Maximum distance allowed between the new Bezier curve and the " - "original backbone geometry)"); + "original backbone geometry"); RNA_def_property_update(prop, NC_LINESTYLE, NULL); srna = RNA_def_struct(brna, "LineStyleGeometryModifier_SinusDisplacement", "LineStyleGeometryModifier");