From 0c58970da75601473d8dcf3c508546f0b2a1d989 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Tue, 7 Jul 2020 12:44:47 +1000 Subject: Cleanup: spelling --- source/blender/blenlib/intern/delaunay_2d.c | 2 +- source/blender/blenlib/intern/fileops.c | 2 +- source/blender/blenlib/intern/math_vector.c | 2 +- source/blender/blenlib/intern/threads.cc | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) (limited to 'source/blender/blenlib') diff --git a/source/blender/blenlib/intern/delaunay_2d.c b/source/blender/blenlib/intern/delaunay_2d.c index 08ccff695c1..ad6d824be9b 100644 --- a/source/blender/blenlib/intern/delaunay_2d.c +++ b/source/blender/blenlib/intern/delaunay_2d.c @@ -952,7 +952,7 @@ static void initial_triangulation(CDT_state *cdt) } #endif - /* Now dedup according to user-defined epsilon. + /* Now de-duplicate according to user-defined epsilon. * We will merge a vertex into an earlier-indexed vertex * that is within epsilon (Euclidean distance). * Merges may cascade. So we may end up merging two things diff --git a/source/blender/blenlib/intern/fileops.c b/source/blender/blenlib/intern/fileops.c index e87350ecbb6..e61cbd318fc 100644 --- a/source/blender/blenlib/intern/fileops.c +++ b/source/blender/blenlib/intern/fileops.c @@ -560,7 +560,7 @@ int BLI_move(const char *file, const char *to) /* windows doesn't support moving to a directory * it has to be 'mv filename filename' and not - * 'mv filename destdir' */ + * 'mv filename destination_directory' */ BLI_strncpy(str, to, sizeof(str)); /* points 'to' to a directory ? */ diff --git a/source/blender/blenlib/intern/math_vector.c b/source/blender/blenlib/intern/math_vector.c index 6ec7c960d6b..7f1840228e2 100644 --- a/source/blender/blenlib/intern/math_vector.c +++ b/source/blender/blenlib/intern/math_vector.c @@ -307,7 +307,7 @@ void mid_v3_v3_array(float r[3], const float (*vec_arr)[3], const uint nbr) /** * Specialized function for calculating normals. - * fastpath for: + * Fast-path for: * * \code{.c} * add_v3_v3v3(r, a, b); diff --git a/source/blender/blenlib/intern/threads.cc b/source/blender/blenlib/intern/threads.cc index 25dcfff36ad..0f44207ecbd 100644 --- a/source/blender/blenlib/intern/threads.cc +++ b/source/blender/blenlib/intern/threads.cc @@ -218,8 +218,8 @@ static void *tslot_thread_start(void *tslot_p) ThreadSlot *tslot = (ThreadSlot *)tslot_p; #ifdef USE_APPLE_OMP_FIX - /* workaround for Apple gcc 4.2.1 omp vs background thread bug, - * set gomp thread local storage pointer which was copied beforehand */ + /* Workaround for Apple gcc 4.2.1 OMP vs background thread bug, + * set GOMP thread local storage pointer which was copied beforehand */ pthread_setspecific(gomp_tls_key, thread_tls_data); #endif -- cgit v1.2.3