Commit: 1c9b80320f9fb203f8f7c71814c5e5efa80e28f3 Author: Ines Almeida Date: Sat Sep 13 20:46:05 2014 +0200 Branches: master https://developer.blender.org/rB1c9b80320f9fb203f8f7c71814c5e5efa80e28f3
typo correction in the python API =================================================================== M doc/python_api/rst/info_quickstart.rst =================================================================== diff --git a/doc/python_api/rst/info_quickstart.rst b/doc/python_api/rst/info_quickstart.rst index 1462351..a1052bf 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: _______________________________________________ Bf-blender-cvs mailing list [email protected] http://lists.blender.org/mailman/listinfo/bf-blender-cvs
