From e42070d20fd87d720ddcb8b0f4c6808a8c163714 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sat, 28 Mar 2009 11:44:07 +0000 Subject: - made epydoc generator write a list of words used in descriptions - fix spelling mistakes in rna docs (and some comments) --- source/blender/makesrna/intern/rna_constraint.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source/blender/makesrna/intern/rna_constraint.c') diff --git a/source/blender/makesrna/intern/rna_constraint.c b/source/blender/makesrna/intern/rna_constraint.c index 25bb2ec6420..774f2f9c0ef 100644 --- a/source/blender/makesrna/intern/rna_constraint.c +++ b/source/blender/makesrna/intern/rna_constraint.c @@ -727,17 +727,17 @@ static void rna_def_constraint_rigid_body_joint(BlenderRNA *brna) prop= RNA_def_property(srna, "axis_x", PROP_FLOAT, PROP_NONE); RNA_def_property_float_sdna(prop, NULL, "axX"); RNA_def_property_range(prop, -360.0, 360.f); - RNA_def_property_ui_text(prop, "Axis X", "Rotate pivot on X axis in degress."); + RNA_def_property_ui_text(prop, "Axis X", "Rotate pivot on X axis in degrees."); prop= RNA_def_property(srna, "axis_y", PROP_FLOAT, PROP_NONE); RNA_def_property_float_sdna(prop, NULL, "axY"); RNA_def_property_range(prop, -360.0, 360.f); - RNA_def_property_ui_text(prop, "Axis Y", "Rotate pivot on Y axis in degress."); + RNA_def_property_ui_text(prop, "Axis Y", "Rotate pivot on Y axis in degrees."); prop= RNA_def_property(srna, "axis_z", PROP_FLOAT, PROP_NONE); RNA_def_property_float_sdna(prop, NULL, "axZ"); RNA_def_property_range(prop, -360.0, 360.f); - RNA_def_property_ui_text(prop, "Axis Z", "Rotate pivot on Z axis in degress."); + RNA_def_property_ui_text(prop, "Axis Z", "Rotate pivot on Z axis in degrees."); /* XXX not sure how to wrap the two 6 element arrays for the generic joint */ //float minLimit[6]; -- cgit v1.2.3