[Bf-blender-cvs] [2c1d23f2092] master: fix unreported: typo in python documentation

Gaia Clary noreply at git.blender.org
Mon Jul 22 11:54:22 CEST 2019


Commit: 2c1d23f2092688d0e9ea113ba3d3275a124dbf25
Author: Gaia Clary
Date:   Mon Jul 22 11:43:07 2019 +0200
Branches: master
https://developer.blender.org/rB2c1d23f2092688d0e9ea113ba3d3275a124dbf25

fix unreported: typo in python documentation

Fix as approved by dr.sybren in blender chat

===================================================================

M	source/blender/makesrna/intern/rna_object_api.c

===================================================================

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



More information about the Bf-blender-cvs mailing list