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>2019-06-21 02:50:23 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-06-21 03:18:53 +0300
commit0c538fc923803c8611c3c7c7af9ca51fc5293b75 (patch)
tree4e2ab026d002301904259074b616560056a66dc5 /doc
parent1e050bd08e408a45435000a1057a3524a78e2ac4 (diff)
Cleanup: spelling, grammar, and other corrections
D5084 by @nBurn with edits
Diffstat (limited to 'doc')
-rw-r--r--doc/python_api/examples/bpy.types.Operator.5.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/python_api/examples/bpy.types.Operator.5.py b/doc/python_api/examples/bpy.types.Operator.5.py
index c1a49a756a0..f1880a70018 100644
--- a/doc/python_api/examples/bpy.types.Operator.5.py
+++ b/doc/python_api/examples/bpy.types.Operator.5.py
@@ -11,8 +11,8 @@ will not run. Modal operators are especially useful for interactive tools, an
operator can have its own state where keys toggle options as the operator runs.
Grab, Rotate, Scale, and Fly-Mode are examples of modal operators.
-:class:`Operator.invoke` is used to initialize the operator as being by
-returning ``{'RUNNING_MODAL'}``, initializing the modal loop.
+:class:`Operator.invoke` is used to initialize the operator as being active
+by returning ``{'RUNNING_MODAL'}``, initializing the modal loop.
Notice ``__init__()`` and ``__del__()`` are declared.
For other operator types they are not useful but for modal operators they will