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
diff options
context:
space:
mode:
authorHoward Trickey <howard.trickey@gmail.com>2012-03-23 18:29:59 +0400
committerHoward Trickey <howard.trickey@gmail.com>2012-03-23 18:29:59 +0400
commitef1d3a399300dc58c9738362b02f57765e436201 (patch)
tree7f8ece1305d0ad2e6960e8fb2508801fd9a984d8 /doc/python_api/rst/info_gotcha.rst
parent87681b46eafede158543233c92d5d32874014b77 (diff)
Fixed a couple of typos in the Python API docs
Diffstat (limited to 'doc/python_api/rst/info_gotcha.rst')
-rw-r--r--doc/python_api/rst/info_gotcha.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/python_api/rst/info_gotcha.rst b/doc/python_api/rst/info_gotcha.rst
index 1d94d68e15e..25ef5175976 100644
--- a/doc/python_api/rst/info_gotcha.rst
+++ b/doc/python_api/rst/info_gotcha.rst
@@ -155,7 +155,7 @@ Support Overview
+==============+==============================+================================+================================+
|Import/Create |Bad (inflexible) |Fine (supported as upgrade path)|Best |
+--------------+------------------------------+--------------------------------+--------------------------------+
-|Manipulate |Bad (inflexible) |Bad (looses ngons) |Best |
+|Manipulate |Bad (inflexible) |Bad (loses ngons) |Best |
+--------------+------------------------------+--------------------------------+--------------------------------+
|Export/Output |Good (ngons) |Good (When ngons can't be used) |Good (ngons, memory overhead) |
+--------------+------------------------------+--------------------------------+--------------------------------+
@@ -188,7 +188,7 @@ Editing is where the 3 data types vary most.
Exporting
---------
-All 3 data types can be used for exporting, the choice mostly depends on weather the target format supports ngons or not.
+All 3 data types can be used for exporting, the choice mostly depends on whether the target format supports ngons or not.
* polygons are the most direct & efficient way to export providing they convert into the output format easily enough.
* tessfaces work well for exporting to formats which dont support ngons, in fact this is the only place where their use is encouraged.