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 <campbell@blender.org>2022-01-28 05:59:08 +0300
committerCampbell Barton <campbell@blender.org>2022-01-28 06:52:47 +0300
commit9f6b19526de8b69bf8015b835f358dd8c2eb6449 (patch)
treee14530ca6a360aba16181b6d64a0f48acf6e0efc /source/blender/blenlib/intern/voronoi_2d.c
parent7475012e24ad02c116ad2dcdcd7b36ca60f62103 (diff)
Cleanup: spelling in comments
Also minor wording improvements.
Diffstat (limited to 'source/blender/blenlib/intern/voronoi_2d.c')
-rw-r--r--source/blender/blenlib/intern/voronoi_2d.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/intern/voronoi_2d.c b/source/blender/blenlib/intern/voronoi_2d.c
index 5b998973a20..65f9994bce7 100644
--- a/source/blender/blenlib/intern/voronoi_2d.c
+++ b/source/blender/blenlib/intern/voronoi_2d.c
@@ -777,7 +777,7 @@ static void voronoi_addTriangle(
*r_triangles = MEM_reallocN(*r_triangles, sizeof(int[3]) * (*r_triangles_total + 1));
}
else {
- *r_triangles = MEM_callocN(sizeof(int[3]), "trianglulation triangles");
+ *r_triangles = MEM_callocN(sizeof(int[3]), "triangulation triangles");
}
triangle = (int *)&(*r_triangles)[(*r_triangles_total)];