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>2018-12-19 02:16:08 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-12-19 02:18:15 +0300
commit5c3953010dca1f9e05ef4b654d957c5f15e91722 (patch)
tree917dc9c720076055bf43af5d544a59e4e6a11254 /source/blender/python/mathutils/mathutils_Matrix.c
parentfd235e52a2a1728916df38965a42a60652f2462a (diff)
Cleanup: spelling
Diffstat (limited to 'source/blender/python/mathutils/mathutils_Matrix.c')
-rw-r--r--source/blender/python/mathutils/mathutils_Matrix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/python/mathutils/mathutils_Matrix.c b/source/blender/python/mathutils/mathutils_Matrix.c
index c72d3c31b1f..d4f9e5e80e2 100644
--- a/source/blender/python/mathutils/mathutils_Matrix.c
+++ b/source/blender/python/mathutils/mathutils_Matrix.c
@@ -354,7 +354,7 @@ static PyObject *Matrix_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
/* Input is now as a sequence of rows so length of sequence
* is the number of rows */
- /* -1 is an error, size checks will accunt for this */
+ /* -1 is an error, size checks will account for this */
const unsigned short num_row = PySequence_Size(arg);
if (num_row >= 2 && num_row <= 4) {