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:
authorGaia Clary <gaia.clary@machinimatrix.org>2019-07-22 12:43:07 +0300
committerGaia Clary <gaia.clary@machinimatrix.org>2019-07-22 12:43:07 +0300
commit2c1d23f2092688d0e9ea113ba3d3275a124dbf25 (patch)
treea3bd0865c744b0c255aa3712576b31d82ba33e9f /source/blender/makesrna/intern/rna_object_api.c
parent45ae9edbd5ac836619b02c5b9d05efbf0f2c8d1d (diff)
fix unreported: typo in python documentation
Fix as approved by dr.sybren in blender chat
Diffstat (limited to 'source/blender/makesrna/intern/rna_object_api.c')
-rw-r--r--source/blender/makesrna/intern/rna_object_api.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesrna/intern/rna_object_api.c b/source/blender/makesrna/intern/rna_object_api.c
index 15f79ea3e89..c91481931a2 100644
--- a/source/blender/makesrna/intern/rna_object_api.c
+++ b/source/blender/makesrna/intern/rna_object_api.c
@@ -729,7 +729,7 @@ void RNA_api_object(StructRNA *srna)
RNA_def_function_flag(func, FUNC_USE_CONTEXT);
parm = RNA_def_pointer(
func, "view_layer", "ViewLayer", "", "Use this instead of the active view layer");
- parm = RNA_def_boolean(func, "result", 0, "", "Object hideed");
+ parm = RNA_def_boolean(func, "result", 0, "", "Object hidden");
RNA_def_function_return(func, parm);
func = RNA_def_function(srna, "hide_set", "rna_Object_hide_set");