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:
authorHans Goudey <h.goudey@me.com>2022-01-24 07:34:56 +0300
committerHans Goudey <h.goudey@me.com>2022-01-24 07:34:56 +0300
commit46475b8e1164ffbfc6fe4c61ec1c6f59fa3045a8 (patch)
tree4c4033201fc9b019f92a1a80897fbb46c95591be /source/blender/blenlib
parent43e3a33082586982e0daa7f00df11df7dc1a3837 (diff)
Cleanup: Grammar: its self vs. itself
Diffstat (limited to 'source/blender/blenlib')
-rw-r--r--source/blender/blenlib/BLI_mempool.h2
-rw-r--r--source/blender/blenlib/intern/list_sort_impl.h2
-rw-r--r--source/blender/blenlib/intern/polyfill_2d.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/blenlib/BLI_mempool.h b/source/blender/blenlib/BLI_mempool.h
index d1999a468b8..caf946cabe3 100644
--- a/source/blender/blenlib/BLI_mempool.h
+++ b/source/blender/blenlib/BLI_mempool.h
@@ -62,7 +62,7 @@ void BLI_mempool_clear_ex(BLI_mempool *pool, int totelem_reserve) ATTR_NONNULL(1
*/
void BLI_mempool_clear(BLI_mempool *pool) ATTR_NONNULL(1);
/**
- * Free the mempool its self (and all elements).
+ * Free the mempool itself (and all elements).
*/
void BLI_mempool_destroy(BLI_mempool *pool) ATTR_NONNULL(1);
int BLI_mempool_len(const BLI_mempool *pool) ATTR_NONNULL(1);
diff --git a/source/blender/blenlib/intern/list_sort_impl.h b/source/blender/blenlib/intern/list_sort_impl.h
index 71f7f0e29a8..626956e2fb6 100644
--- a/source/blender/blenlib/intern/list_sort_impl.h
+++ b/source/blender/blenlib/intern/list_sort_impl.h
@@ -34,7 +34,7 @@
* - `SORT_IMPL_LINKTYPE`:
* Struct type for sorting.
* - `SORT_IMPL_LINKTYPE_DATA`:
- * Data pointer or leave undefined to pass the link its self.
+ * Data pointer or leave undefined to pass the link itself.
* - `SORT_IMPL_FUNC`:
* Function name of the sort function.
*
diff --git a/source/blender/blenlib/intern/polyfill_2d.c b/source/blender/blenlib/intern/polyfill_2d.c
index 0ade306bcb9..aec34659884 100644
--- a/source/blender/blenlib/intern/polyfill_2d.c
+++ b/source/blender/blenlib/intern/polyfill_2d.c
@@ -25,7 +25,7 @@
* and that triangles will have non-overlapping indices (even for degenerate geometry).
* - Self-intersections are considered degenerate (resulting triangles will overlap).
* - While multiple polygons aren't supported, holes can still be defined using *key-holes*
- * (where the polygon doubles back on its self with *exactly* matching coordinates).
+ * (where the polygon doubles back on itself with *exactly* matching coordinates).
*
* \note
*