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>2012-12-16 14:28:52 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-12-16 14:28:52 +0400
commitdc7a138830bed2f27cc5b20d919b73406ff17480 (patch)
tree6c320a0d1fb08388eb97daf97be8a4a155242bc6 /source/blender
parentdd582e03080cbe7e3ab2357ffd23461e2ab673c4 (diff)
correct bad comment
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/makesrna/intern/makesrna.c2
-rw-r--r--source/blender/python/mathutils/mathutils_Matrix.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/makesrna.c b/source/blender/makesrna/intern/makesrna.c
index 1d9b737ba29..9b7872f0b4b 100644
--- a/source/blender/makesrna/intern/makesrna.c
+++ b/source/blender/makesrna/intern/makesrna.c
@@ -91,7 +91,7 @@ static void rna_generate_static_parameter_prototypes(FILE *f, StructRNA *srna, F
{ \
WRITE_COMMA; \
fprintf(f, param); \
- }
+ } (void)0
static int replace_if_different(char *tmpfile, const char *dep_files[])
{
diff --git a/source/blender/python/mathutils/mathutils_Matrix.c b/source/blender/python/mathutils/mathutils_Matrix.c
index e64853fd8f5..da2888045d0 100644
--- a/source/blender/python/mathutils/mathutils_Matrix.c
+++ b/source/blender/python/mathutils/mathutils_Matrix.c
@@ -1537,7 +1537,7 @@ static PyObject *Matrix_transposed(MatrixObject *self)
PyDoc_STRVAR(Matrix_normalize_doc,
".. method:: normalize()\n"
"\n"
-" Normalize each of the columns of the matrix (useful for transforming unit length normals).\n"
+" Normalize each of the matrix columns.\n"
);
static PyObject *Matrix_normalize(MatrixObject *self)
{