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:
authorBastien Montagne <montagne29@wanadoo.fr>2016-04-21 13:16:32 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2016-04-21 13:16:32 +0300
commit0b349871d81d61637722d775302a7505b515dd8a (patch)
tree3bd5156cf487bc911a10ebb4054d486d0ebcfe73 /doc/python_api/examples/bpy.props.5.py
parent7205bac989771d2198d6683f4cdae3aedb64ab1e (diff)
Fix T48212: Typos in bpy enum props examples.
Diffstat (limited to 'doc/python_api/examples/bpy.props.5.py')
-rw-r--r--doc/python_api/examples/bpy.props.5.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/python_api/examples/bpy.props.5.py b/doc/python_api/examples/bpy.props.5.py
index 4e9d61d5385..87741cbab8a 100644
--- a/doc/python_api/examples/bpy.props.5.py
+++ b/doc/python_api/examples/bpy.props.5.py
@@ -48,9 +48,9 @@ bpy.types.Scene.test_array = bpy.props.BoolVectorProperty(size=2, get=get_array,
# Note: the getter/setter callback must use integer identifiers!
test_items = [
("RED", "Red", "", 1),
- ("GREEN", "Red", "", 2),
- ("BLUE", "Red", "", 3),
- ("YELLOW", "Red", "", 4),
+ ("GREEN", "Green", "", 2),
+ ("BLUE", "Blue", "", 3),
+ ("YELLOW", "Yellow", "", 4),
]