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:
authorCampbell Barton <ideasman42@gmail.com>2012-11-12 07:23:47 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-11-12 07:23:47 +0400
commitd22c5d434149b0efc547f7fa3fdf58507a786c62 (patch)
tree4293dc142e7a24dec7ef9ce8639ba356ba0d88f9 /source/blender/bmesh
parentb747759698fa8b7f6bed746a9f30419840973c3b (diff)
update to python api `Gotcha` docs to reflect changes to the api. also add a section about modifying linked library data.
Diffstat (limited to 'source/blender/bmesh')
-rw-r--r--source/blender/bmesh/intern/bmesh_queries.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/bmesh/intern/bmesh_queries.c b/source/blender/bmesh/intern/bmesh_queries.c
index b37a82c7228..205108395e6 100644
--- a/source/blender/bmesh/intern/bmesh_queries.c
+++ b/source/blender/bmesh/intern/bmesh_queries.c
@@ -1420,7 +1420,7 @@ int BM_face_exists_multi_edge(BMEdge **earr, int len)
return ok;
}
-/* convenience functiosn for checking flags */
+/* convenience functions for checking flags */
int BM_edge_is_any_vert_flag_test(BMEdge *e, const char hflag)
{
return (BM_elem_flag_test(e->v1, hflag) ||