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:
authorHarley Acheson <harley.acheson@gmail.com>2020-10-19 18:12:33 +0300
committerHarley Acheson <harley.acheson@gmail.com>2020-10-19 18:12:33 +0300
commit3a7fd309fce89213b0224b3c6807adb2d1fe7ca8 (patch)
tree20e6064201939368650509d758c7187df74416a6 /source/blender/python
parentd2bf71b412233160a52775f29799a2c1331c92f4 (diff)
Spelling: It's Versus Its
Corrects incorrect usage of contraction for 'it is', when possessive 'its' was required. Differential Revision: https://developer.blender.org/D9250 Reviewed by Campbell Barton
Diffstat (limited to 'source/blender/python')
-rw-r--r--source/blender/python/intern/bpy_rna.c2
-rw-r--r--source/blender/python/intern/bpy_rna_types_capi.c2
-rw-r--r--source/blender/python/intern/bpy_rna_ui.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/python/intern/bpy_rna.c b/source/blender/python/intern/bpy_rna.c
index 8ad7d84ca2d..bee4fef9d17 100644
--- a/source/blender/python/intern/bpy_rna.c
+++ b/source/blender/python/intern/bpy_rna.c
@@ -8136,7 +8136,7 @@ static int bpy_class_validate_recursive(PointerRNA *dummyptr,
* 'FUNC_USE_SELF_TYPE' for many functions. */
const bool is_staticmethod = (flag & FUNC_NO_SELF) && !(flag & FUNC_USE_SELF_TYPE);
- /* Store original so we can decrement it's reference before returning. */
+ /* Store original so we can decrement its reference before returning. */
PyObject *item_orig = item;
if (is_staticmethod) {
diff --git a/source/blender/python/intern/bpy_rna_types_capi.c b/source/blender/python/intern/bpy_rna_types_capi.c
index 30623724593..042f7b6fd67 100644
--- a/source/blender/python/intern/bpy_rna_types_capi.c
+++ b/source/blender/python/intern/bpy_rna_types_capi.c
@@ -87,7 +87,7 @@ static struct PyMethodDef pyrna_uilayout_methods[] = {
/* -------------------------------------------------------------------- */
/** \name Window Manager Clipboard Property
*
- * Avoid using the RNA API because this value may change between checking it's length
+ * Avoid using the RNA API because this value may change between checking its length
* and creating the buffer, causing writes past the allocated length.
* \{ */
diff --git a/source/blender/python/intern/bpy_rna_ui.c b/source/blender/python/intern/bpy_rna_ui.c
index 27e4cb069ce..ec92eadfd72 100644
--- a/source/blender/python/intern/bpy_rna_ui.c
+++ b/source/blender/python/intern/bpy_rna_ui.c
@@ -17,7 +17,7 @@
/** \file
* \ingroup pythonintern
*
- * This adds helpers to #uiLayout which can't be added easily to RNA it's self.
+ * This adds helpers to #uiLayout which can't be added easily to RNA itself.
*/
#include <Python.h>