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>2012-11-12 07:37:28 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-11-12 07:37:28 +0400
commit955b5db5e9840b597ed1d7e99825c17c3120295c (patch)
treebd46cf307d7d724d13edec29ff0564e80b5c0389 /doc
parent5d8a207b67aee18cadec742246b9dc9c052bd344 (diff)
build fix: recent commit broke building on 64bit linux
Diffstat (limited to 'doc')
-rw-r--r--doc/python_api/rst/info_gotcha.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/python_api/rst/info_gotcha.rst b/doc/python_api/rst/info_gotcha.rst
index 235e0f71c2d..e60f1e256cd 100644
--- a/doc/python_api/rst/info_gotcha.rst
+++ b/doc/python_api/rst/info_gotcha.rst
@@ -130,7 +130,7 @@ In this situation you can...
* Exit edit-mode before running the tool.
* Explicitly update the mesh by calling :class:`bmesh.types.BMesh.to_mesh`.
* Modify the script to support working on the edit-mode data directly, see: :mod:`bmesh.from_edit_mesh`.
-* Report the context as incorrect and only allow the script to run when editmode is disabled.
+* Report the context as incorrect and only allow the script to run outside edit-mode.
.. _info_gotcha_mesh_faces: