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>2021-03-18 01:35:12 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-03-18 01:36:44 +0300
commitbb6765f28fdde392976c38712c851d0ef8c75a2c (patch)
tree500342ef54f60bb73b429e74355139665bff500f /source/blender/python
parent0c58ad8a34c55344262ac74fce87888beb464155 (diff)
Cleanup: spelling
Diffstat (limited to 'source/blender/python')
-rw-r--r--source/blender/python/generic/py_capi_utils.c2
-rw-r--r--source/blender/python/intern/bpy_gizmo_wrap.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/python/generic/py_capi_utils.c b/source/blender/python/generic/py_capi_utils.c
index 82e65505147..78f5b9ba2cc 100644
--- a/source/blender/python/generic/py_capi_utils.c
+++ b/source/blender/python/generic/py_capi_utils.c
@@ -293,7 +293,7 @@ const char *PyC_StringEnum_FindIDFromValue(const struct PyC_StringEnumItems *ite
return NULL;
}
-/* silly function, we dont use arg. just check its compatible with __deepcopy__ */
+/* Silly function, we don't use arg. just check its compatible with `__deepcopy__`. */
int PyC_CheckArgs_DeepCopy(PyObject *args)
{
PyObject *dummy_pydict;
diff --git a/source/blender/python/intern/bpy_gizmo_wrap.c b/source/blender/python/intern/bpy_gizmo_wrap.c
index 774ad95c3eb..686a4d88266 100644
--- a/source/blender/python/intern/bpy_gizmo_wrap.c
+++ b/source/blender/python/intern/bpy_gizmo_wrap.c
@@ -118,7 +118,7 @@ static void gizmo_properties_init(wmGizmoType *gzt)
{
/* Picky developers will notice that 'bl_targets' won't work with inheritance
* get direct from the dict to avoid raising a load of attribute errors
- * (yes this isnt ideal) - campbell. */
+ * (yes this isn't ideal) - campbell. */
PyObject *py_class_dict = py_class->tp_dict;
PyObject *bl_target_properties = PyDict_GetItem(py_class_dict,
bpy_intern_str_bl_target_properties);