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:
authorInes Almeida <britalmeida@gmail.com>2014-09-13 22:46:05 +0400
committerInes Almeida <britalmeida@gmail.com>2014-09-14 01:43:28 +0400
commit1c9b80320f9fb203f8f7c71814c5e5efa80e28f3 (patch)
tree6f2209fa5b9c1adf4f602213b3bc2b9c226e2c27 /doc
parentfdb12ff564daefc20829ebe37edf76788530bef6 (diff)
typo correction in the python API
Diffstat (limited to 'doc')
-rw-r--r--doc/python_api/rst/info_quickstart.rst5
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/python_api/rst/info_quickstart.rst b/doc/python_api/rst/info_quickstart.rst
index 14623515cfe..a1052bf4208 100644
--- a/doc/python_api/rst/info_quickstart.rst
+++ b/doc/python_api/rst/info_quickstart.rst
@@ -49,7 +49,7 @@ A quick list of helpful things to know before starting:
* Blender uses Python 3.x; some 3rd party extensions are not available yet.
-* The interactive console is great for testing one-liners, It also has autocompleation so you can inspect the api quickly.
+* The interactive console is great for testing one-liners, It also has autocompletion so you can inspect the api quickly.
* Button tool tips show Python attributes and operator names.
@@ -247,7 +247,8 @@ Examples:
Operator Poll()
^^^^^^^^^^^^^^^
-Many operators have a "poll" function which may check that the mouse is a valid area or that the object is in the correct mode (Edit Mode, Weight Paint etc). When an operator's poll function fails within python, an exception is raised.
+Many operators have a "poll" function which may check that the mouse is in a valid area or that the object is in the correct mode (Edit Mode, Weight Paint etc).
+When an operator's poll function fails within python, an exception is raised.
For example, calling bpy.ops.view3d.render_border() from the console raises the following error: