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
path: root/doc
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2011-04-29 08:43:36 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-04-29 08:43:36 +0400
commitf3a9b7580eb5c4514580f50795954981348c69b9 (patch)
tree913421bddde8bcf68365a12e8a315bfbeffed541 /doc
parent70829f05da1f46335988c694bdefbaa2ad894cb2 (diff)
spelling corrections.
Diffstat (limited to 'doc')
-rw-r--r--doc/python_api/examples/bpy.types.Operator.1.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/python_api/examples/bpy.types.Operator.1.py b/doc/python_api/examples/bpy.types.Operator.1.py
index 133dc09af46..fc016508d39 100644
--- a/doc/python_api/examples/bpy.types.Operator.1.py
+++ b/doc/python_api/examples/bpy.types.Operator.1.py
@@ -32,7 +32,7 @@ class SimpleMouseOperator(bpy.types.Operator):
def execute(self, context):
# rather then printing, use the report function,
- # this way the messag appiers in the header,
+ # this way the message appears in the header,
self.report({'INFO'}, "Mouse coords are %d %d" % (self.x, self.y))
return {'FINISHED'}