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:
authorHans Goudey <h.goudey@me.com>2022-01-24 07:34:56 +0300
committerHans Goudey <h.goudey@me.com>2022-01-24 07:34:56 +0300
commit46475b8e1164ffbfc6fe4c61ec1c6f59fa3045a8 (patch)
tree4c4033201fc9b019f92a1a80897fbb46c95591be /source/blender/makesrna/intern/rna_rna.c
parent43e3a33082586982e0daa7f00df11df7dc1a3837 (diff)
Cleanup: Grammar: its self vs. itself
Diffstat (limited to 'source/blender/makesrna/intern/rna_rna.c')
-rw-r--r--source/blender/makesrna/intern/rna_rna.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/makesrna/intern/rna_rna.c b/source/blender/makesrna/intern/rna_rna.c
index 3e150d03bf0..85955c5e9f7 100644
--- a/source/blender/makesrna/intern/rna_rna.c
+++ b/source/blender/makesrna/intern/rna_rna.c
@@ -2984,14 +2984,14 @@ static void rna_def_function(BlenderRNA *brna)
RNA_def_property_ui_text(
prop,
"No Self",
- "Function does not pass its self as an argument (becomes a static method in python)");
+ "Function does not pass itself as an argument (becomes a static method in python)");
prop = RNA_def_property(srna, "use_self_type", PROP_BOOLEAN, PROP_NONE);
RNA_def_property_clear_flag(prop, PROP_EDITABLE);
RNA_def_property_boolean_funcs(prop, "rna_Function_use_self_type_get", NULL);
RNA_def_property_ui_text(prop,
"Use Self Type",
- "Function passes its self type as an argument (becomes a class method "
+ "Function passes itself type as an argument (becomes a class method "
"in python if use_self is false)");
}