fix unreported: typo in python documentation

Fix as approved by dr.sybren in blender chat
This commit is contained in:
Gaia Clary
2019-07-22 11:43:07 +02:00
parent 45ae9edbd5
commit 2c1d23f209

View File

@@ -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");