From c46663ad66c6e378214f34db483ac67bb4c27272 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 21 Jul 2020 15:58:16 +1000 Subject: Cleanup: spelling --- source/blender/blenlib/intern/math_geom.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/blenlib/intern/math_geom.c') diff --git a/source/blender/blenlib/intern/math_geom.c b/source/blender/blenlib/intern/math_geom.c index 2891279bb63..79f1aa1e640 100644 --- a/source/blender/blenlib/intern/math_geom.c +++ b/source/blender/blenlib/intern/math_geom.c @@ -4265,7 +4265,7 @@ void interp_weights_poly_v3(float *w, float v[][3], const int n, const float co[ * to borders of face. * In that case, do simple linear interpolation between the two edge vertices */ - /* 'd_next.len' is infact 'd_curr.len', just avoid copy to begin with */ + /* 'd_next.len' is in fact 'd_curr.len', just avoid copy to begin with */ if (UNLIKELY(d_next.len < eps)) { ix_flag = IS_POINT_IX; break; @@ -4350,7 +4350,7 @@ void interp_weights_poly_v2(float *w, float v[][2], const int n, const float co[ * to borders of face. In that case, * do simple linear interpolation between the two edge vertices */ - /* 'd_next.len' is infact 'd_curr.len', just avoid copy to begin with */ + /* 'd_next.len' is in fact 'd_curr.len', just avoid copy to begin with */ if (UNLIKELY(d_next.len < eps)) { ix_flag = IS_POINT_IX; break; -- cgit v1.2.3