Spelling fixes in comments and descriptions, patch by luzpaz.

Differential Revision: https://developer.blender.org/D3700
This commit is contained in:
2018-09-19 17:48:11 +02:00
parent 424839e3c2
commit a4f2ebc78d
36 changed files with 48 additions and 48 deletions

View File

@@ -618,7 +618,7 @@ const char *PyC_UnicodeAsByteAndSize(PyObject *py_str, Py_ssize_t *size, PyObjec
if (result) {
/* 99% of the time this is enough but we better support non unicode
* chars since blender doesnt limit this */
* chars since blender doesn't limit this */
return result;
}
else {
@@ -671,7 +671,7 @@ PyObject *PyC_UnicodeFromByteAndSize(const char *str, Py_ssize_t size)
PyObject *result = PyUnicode_FromStringAndSize(str, size);
if (result) {
/* 99% of the time this is enough but we better support non unicode
* chars since blender doesnt limit this */
* chars since blender doesn't limit this */
return result;
}
else {