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-03-10 07:47:50 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-03-10 07:47:50 +0300
commit70e73974b593d2fe3adfd9c964274c037fb51887 (patch)
tree680ab58a61b941964723bad7a318b28af2aab793 /source/blender/blenlib/intern/array_utils.c
parent548e2e2f251e7dcecfc4db0f8d8ea04414fc2b56 (diff)
Cleanup: spelling
Diffstat (limited to 'source/blender/blenlib/intern/array_utils.c')
-rw-r--r--source/blender/blenlib/intern/array_utils.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenlib/intern/array_utils.c b/source/blender/blenlib/intern/array_utils.c
index 5bf50b029a5..17ee0eecc6b 100644
--- a/source/blender/blenlib/intern/array_utils.c
+++ b/source/blender/blenlib/intern/array_utils.c
@@ -324,7 +324,7 @@ bool _bli_array_is_zeroed(const void *arr_v, unsigned int arr_len, size_t arr_st
* Nice for selection ID.
*
* \param arr_shape: dimensions [w, h].
- * \param center: coordinates [x, y] indicating where to start transversing.
+ * \param center: coordinates [x, y] indicating where to start traversing.
*/
bool _bli_array_iter_spiral_square(const void *arr_v,
const int arr_shape[2],
@@ -345,7 +345,7 @@ bool _bli_array_iter_spiral_square(const void *arr_v,
return true;
}
- /* #steps_in and #steps_out are the "diameters" of the inscribed and ciscunscript squares in the
+ /* #steps_in and #steps_out are the "diameters" of the inscribed and circumscribed squares in the
* rectangle. Each step smaller than #steps_in does not need to check bounds. */
int steps_in, steps_out;
{