Fixed a couple of typos in the Python API docs

This commit is contained in:
Howard Trickey
2012-03-23 14:29:59 +00:00
parent 87681b46ea
commit ef1d3a3993
3 changed files with 6 additions and 6 deletions

View File

@@ -110,10 +110,10 @@ Keeping a Correct State
When modeling in blender there are certain assumptions made about the state of the mesh.
* hidden geometry isn't selected.
* when an edge is selected, its vertices's are selected too.
* when a face is selected, its edges and vertices's are selected.
* when an edge is selected, its vertices are selected too.
* when a face is selected, its edges and vertices are selected.
* duplicate edges / faces don't exist.
* faces have at least 3 vertices's.
* faces have at least 3 vertices.
To give developers flexibility these conventions are not enforced,
however tools must leave the mesh in a valid state else other tools may behave incorrectly.