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
This commit is contained in:
2020-10-19 08:12:33 -07:00
parent d2bf71b412
commit 3a7fd309fc
133 changed files with 158 additions and 158 deletions

View File

@@ -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) {

View File

@@ -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.
* \{ */

View File

@@ -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>