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>2020-03-24 02:27:12 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-03-24 02:36:42 +0300
commitd0d251b53b7114a52d1253b022acb04d84e39507 (patch)
tree7cc5f718adfffe9158cd4cfbe20e2aa6ae3a341d /source/blender/blenlib
parent9c280630c96e3fa7194166350bd7197d28c5428f (diff)
Cleanup: spelling
Diffstat (limited to 'source/blender/blenlib')
-rw-r--r--source/blender/blenlib/intern/math_geom.c2
-rw-r--r--source/blender/blenlib/intern/threads.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenlib/intern/math_geom.c b/source/blender/blenlib/intern/math_geom.c
index fa50bf202a8..4c0d7e08a3c 100644
--- a/source/blender/blenlib/intern/math_geom.c
+++ b/source/blender/blenlib/intern/math_geom.c
@@ -5356,7 +5356,7 @@ void vcloud_estimate_transform_v3(const int list_size,
}
if (lrot || lscale) { /* caller does not want rot nor scale, strange but legal */
/* so now do some reverse engineering and see if we can
- * split rotation from scale -> Polardecompose */
+ * split rotation from scale -> Polar-decompose. */
/* build 'projection' matrix */
float m[3][3], mr[3][3], q[3][3], qi[3][3];
float va[3], vb[3], stunt[3];
diff --git a/source/blender/blenlib/intern/threads.c b/source/blender/blenlib/intern/threads.c
index 95a63ae5c4e..0a574ea34ca 100644
--- a/source/blender/blenlib/intern/threads.c
+++ b/source/blender/blenlib/intern/threads.c
@@ -862,7 +862,7 @@ void BLI_threaded_malloc_end(void)
#if 0 /* UNUSED */
static bool check_is_threadripper2_alike_topology(void)
{
- /* NOTE: We hope operating system does not support CPU hotswap to
+ /* NOTE: We hope operating system does not support CPU hot-swap to
* a different brand. And that SMP of different types is also not
* encouraged by the system. */
static bool is_initialized = false;