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-04-21 18:14:58 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-04-21 18:14:58 +0400
commit8765dfccf725770007e3b4e6b24199fe8377df71 (patch)
tree280d5c199e0c037bb9a3f9f193bd70a411a8b8b5 /source/blender/editors/mesh
parent1c54eaecd89ba30500e7b83adaf1c1a8a85c0b43 (diff)
style cleanup: correct typos
Diffstat (limited to 'source/blender/editors/mesh')
-rw-r--r--source/blender/editors/mesh/editmesh_rip.c2
-rw-r--r--source/blender/editors/mesh/editmesh_tools.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/mesh/editmesh_rip.c b/source/blender/editors/mesh/editmesh_rip.c
index 946eaf8d3c8..fbbe376a18f 100644
--- a/source/blender/editors/mesh/editmesh_rip.c
+++ b/source/blender/editors/mesh/editmesh_rip.c
@@ -635,7 +635,7 @@ static int edbm_rip_invoke__edge(bContext *C, wmOperator *op, wmEvent *event)
BMLoop *l_a = e2->l;
BMLoop *l_b = l_a->radial_next;
- /* find the best face to follow, this wat the edge won't point away from
+ /* find the best face to follow, this what the edge won't point away from
* the mouse when there are more then 4 (takes the shortest face fan around) */
l = (edbm_rip_edge_side_measure(e2, l_a, ar, projectMat, fmval) <
edbm_rip_edge_side_measure(e2, l_b, ar, projectMat, fmval)) ? l_a : l_b;
diff --git a/source/blender/editors/mesh/editmesh_tools.c b/source/blender/editors/mesh/editmesh_tools.c
index 4b064d8bcc6..e40a60203af 100644
--- a/source/blender/editors/mesh/editmesh_tools.c
+++ b/source/blender/editors/mesh/editmesh_tools.c
@@ -3624,7 +3624,7 @@ void MESH_OT_select_mirror(wmOperatorType *ot)
/* qsort routines. not sure how to make these
* work, since we aren't using linked lists for
- * geometry anymore. might need a sortof "swap"
+ * geometry anymore. might need a sort of "swap"
* function for bmesh elements. */
/* TODO All this section could probably use a refresh...