From 46475b8e1164ffbfc6fe4c61ec1c6f59fa3045a8 Mon Sep 17 00:00:00 2001 From: Hans Goudey Date: Sun, 23 Jan 2022 22:34:56 -0600 Subject: Cleanup: Grammar: its self vs. itself --- release/scripts/modules/bpy_extras/io_utils.py | 2 +- release/scripts/modules/console_python.py | 2 +- release/scripts/modules/rna_xml.py | 2 +- release/scripts/startup/bl_operators/wm.py | 2 +- release/scripts/templates_py/operator_modal_timer.py | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) (limited to 'release') diff --git a/release/scripts/modules/bpy_extras/io_utils.py b/release/scripts/modules/bpy_extras/io_utils.py index a3b39853b3a..65d8ce67578 100644 --- a/release/scripts/modules/bpy_extras/io_utils.py +++ b/release/scripts/modules/bpy_extras/io_utils.py @@ -546,7 +546,7 @@ def unique_name(key, name, name_dict, name_max=-1, clean_func=None, sep="."): :arg key: unique item this name belongs to, name_dict[key] will be reused when available. - This can be the object, mesh, material, etc instance its self. + This can be the object, mesh, material, etc instance itself. :type key: any hashable object associated with the *name*. :arg name: The name used to create a unique value in *name_dict*. :type name: string diff --git a/release/scripts/modules/console_python.py b/release/scripts/modules/console_python.py index 9e1b921774d..637fc9ed8b6 100644 --- a/release/scripts/modules/console_python.py +++ b/release/scripts/modules/console_python.py @@ -272,7 +272,7 @@ def autocomplete(context): sc.select_end += ofs except: # unlikely, but this can happen with unicode errors for example. - # or if the api attribute access its self causes an error. + # or if the api attribute access itself causes an error. import traceback scrollback_error = traceback.format_exc() diff --git a/release/scripts/modules/rna_xml.py b/release/scripts/modules/rna_xml.py index a36b262c883..7f7b273c42b 100644 --- a/release/scripts/modules/rna_xml.py +++ b/release/scripts/modules/rna_xml.py @@ -122,7 +122,7 @@ def rna2xml( if issubclass(value_type, skip_classes): return - # XXX, fixme, pointcache has eternal nested pointer to its self. + # XXX, fixme, pointcache has eternal nested pointer to itself. if value == parent: return diff --git a/release/scripts/startup/bl_operators/wm.py b/release/scripts/startup/bl_operators/wm.py index 3a46bb7fb53..ce8bfa3b058 100644 --- a/release/scripts/startup/bl_operators/wm.py +++ b/release/scripts/startup/bl_operators/wm.py @@ -581,7 +581,7 @@ class WM_OT_context_cycle_enum(Operator): # Have the info we need, advance to the next item. # - # When wrap's disabled we may set the value to its self, + # When wrap's disabled we may set the value to itself, # this is done to ensure update callbacks run. if self.reverse: if orig_index == 0: diff --git a/release/scripts/templates_py/operator_modal_timer.py b/release/scripts/templates_py/operator_modal_timer.py index 11530f18829..19c003712ad 100644 --- a/release/scripts/templates_py/operator_modal_timer.py +++ b/release/scripts/templates_py/operator_modal_timer.py @@ -2,7 +2,7 @@ import bpy class ModalTimerOperator(bpy.types.Operator): - """Operator which runs its self from a timer""" + """Operator which runs itself from a timer""" bl_idname = "wm.modal_timer_operator" bl_label = "Modal Timer Operator" -- cgit v1.2.3