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>2021-12-10 13:28:56 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-12-10 13:28:56 +0300
commit715f57371baa627ca677a8faf88e56ebb1180027 (patch)
tree29ae6f36d7f28f12736ef69b4343950fe235694b /source/blender/bmesh
parentb87b33adbfa0dbf2273ee0898ae010cc2510eff7 (diff)
Cleanup: spelling in comments
Diffstat (limited to 'source/blender/bmesh')
-rw-r--r--source/blender/bmesh/intern/bmesh_operator_api.h4
-rw-r--r--source/blender/bmesh/intern/bmesh_polygon.h2
-rw-r--r--source/blender/bmesh/intern/bmesh_query.h2
3 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/bmesh/intern/bmesh_operator_api.h b/source/blender/bmesh/intern/bmesh_operator_api.h
index 216726f0a83..c60e8af68e5 100644
--- a/source/blender/bmesh/intern/bmesh_operator_api.h
+++ b/source/blender/bmesh/intern/bmesh_operator_api.h
@@ -390,13 +390,13 @@ int BMO_mesh_disabled_flag_count(BMesh *bm, const char htype, const short oflag)
/**
* \brief BMESH OPSTACK PUSH
*
- * Pushes the opstack down one level and allocates a new flag layer if appropriate.
+ * Pushes the operator-stack down one level and allocates a new flag layer if appropriate.
*/
void BMO_push(BMesh *bm, BMOperator *op);
/**
* \brief BMESH OPSTACK POP
*
- * Pops the opstack one level and frees a flag layer if appropriate
+ * Pops the operator-stack one level and frees a flag layer if appropriate
*
* BMESH_TODO: investigate NOT freeing flag layers.
*/
diff --git a/source/blender/bmesh/intern/bmesh_polygon.h b/source/blender/bmesh/intern/bmesh_polygon.h
index 11f578fc6ff..e4545e610a0 100644
--- a/source/blender/bmesh/intern/bmesh_polygon.h
+++ b/source/blender/bmesh/intern/bmesh_polygon.h
@@ -200,7 +200,7 @@ bool BM_face_point_inside_test(const BMFace *f, const float co[3]) ATTR_WARN_UNU
* \brief BMESH TRIANGULATE FACE
*
* Breaks all quads and ngons down to triangles.
- * It uses polyfill for the ngons splitting, and
+ * It uses poly-fill for the ngons splitting, and
* the beautify operator when use_beauty is true.
*
* \param r_faces_new: if non-null, must be an array of BMFace pointers,
diff --git a/source/blender/bmesh/intern/bmesh_query.h b/source/blender/bmesh/intern/bmesh_query.h
index a88215c0e07..9c4dc169589 100644
--- a/source/blender/bmesh/intern/bmesh_query.h
+++ b/source/blender/bmesh/intern/bmesh_query.h
@@ -725,7 +725,7 @@ int BM_mesh_calc_face_groups(BMesh *bm,
* Calculate isolated groups of edges with optional filtering.
*
* \param bm: the BMesh.
- * \param r_groups_array: Array of ints to fill in, length of bm->totedge
+ * \param r_groups_array: Array of ints to fill in, length of `bm->totedge`
* (or when hflag_test is set, the number of flagged edges).
* \param r_group_index: index, length pairs into \a r_groups_array, size of return value
* int pairs: (array_start, array_length).