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:28:26 +0300
committerCampbell Barton <ideasman42@gmail.com>2018-12-19 02:28:26 +0300
commitd46d8e831ce0c6a519d60cdcb4c8a5d4f5a88428 (patch)
tree9c87e6aa0832734a7a4b01e835bacc416138fb00 /source/blender/python/mathutils/mathutils_Matrix.c
parent61a816e8ff060016f6e450bb6bbd9df5c93665a6 (diff)
parent5c3953010dca1f9e05ef4b654d957c5f15e91722 (diff)
Merge branch 'master' into blender2.8
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 76921b69d1a..c033a990901 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) {