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>2009-03-28 14:44:07 +0300
committerCampbell Barton <ideasman42@gmail.com>2009-03-28 14:44:07 +0300
commite42070d20fd87d720ddcb8b0f4c6808a8c163714 (patch)
tree402d61e3e7ce861f0eff146274f3c98f1a075016 /source/blender/makesrna/intern/rna_constraint.c
parent6b3935f8eb0c1bf59adb948e101e326ed7f67dd6 (diff)
- made epydoc generator write a list of words used in descriptions
- fix spelling mistakes in rna docs (and some comments)
Diffstat (limited to 'source/blender/makesrna/intern/rna_constraint.c')
-rw-r--r--source/blender/makesrna/intern/rna_constraint.c6
1 files changed, 3 insertions, 3 deletions
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];