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-10-06 06:44:27 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-10-06 06:54:05 +0300
commitdf8f507f411fd71e649e9a896f53c2e574558525 (patch)
treec248e58ff8eb31e27ca9a1aae2bc76b8bb4dd3a7 /source/blender/blenkernel/intern/vfontdata_freetype.c
parentbf35dba7fbab568e857b85e9a74ae0f1eb5838f6 (diff)
Cleanup: spelling in comments
Diffstat (limited to 'source/blender/blenkernel/intern/vfontdata_freetype.c')
-rw-r--r--source/blender/blenkernel/intern/vfontdata_freetype.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenkernel/intern/vfontdata_freetype.c b/source/blender/blenkernel/intern/vfontdata_freetype.c
index caeb016aaa3..bd58d156d06 100644
--- a/source/blender/blenkernel/intern/vfontdata_freetype.c
+++ b/source/blender/blenkernel/intern/vfontdata_freetype.c
@@ -100,7 +100,7 @@ static VChar *freetypechar_to_vchar(FT_Face face, FT_ULong charcode, VFontData *
/* Start converting the FT data */
onpoints = (int *)MEM_callocN((ftoutline.n_contours) * sizeof(int), "onpoints");
- /* get number of on-curve points for beziertriples (including conic virtual on-points) */
+ /* Get number of on-curve points for bezier-triples (including conic virtual on-points). */
for (j = 0, contour_prev = -1; j < ftoutline.n_contours; j++) {
const int n = ftoutline.contours[j] - contour_prev;
contour_prev = ftoutline.contours[j];