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:
authorNikhil Shringarpurey <Nikhil.Net>2022-03-02 21:05:15 +0300
committerHarley Acheson <harley.acheson@gmail.com>2022-03-02 21:05:15 +0300
commit721b705499fee2b999f74c7928892c9a9fce5bc2 (patch)
tree6acb8d49e5b97651a792e5918bafcc58f74cd114 /source/blender/blenlib
parentca0b72852961571d0099a7274fb34291494f3b45 (diff)
UI: Comments Misspellings of Vertex/Vertices
Correct misspellings in code comments of "vertex" and "vertices". See D13932 for more details. Differential Revision: https://developer.blender.org/D13932 Reviewed by Harley Acheson
Diffstat (limited to 'source/blender/blenlib')
-rw-r--r--source/blender/blenlib/intern/bitmap_draw_2d.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/intern/bitmap_draw_2d.c b/source/blender/blenlib/intern/bitmap_draw_2d.c
index 7e7ad0346a8..16335933f67 100644
--- a/source/blender/blenlib/intern/bitmap_draw_2d.c
+++ b/source/blender/blenlib/intern/bitmap_draw_2d.c
@@ -208,7 +208,7 @@ void BLI_bitmap_draw_2d_tri_v2i(
void (*callback)(int x, int x_end, int y, void *),
void *user_data)
{
- /* At first sort the three vertices by y-coordinate ascending so p1 is the top-most vertice */
+ /* At first sort the three vertices by y-coordinate ascending so p1 is the top-most vertex */
ORDER_VARS3_BY(const int *, p1, p2, p3, [1]);
BLI_assert(p1[1] <= p2[1] && p2[1] <= p3[1]);