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
path: root/tests
diff options
context:
space:
mode:
authorBastien Montagne <montagne29@wanadoo.fr>2018-12-24 17:02:20 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2018-12-24 17:03:49 +0300
commit6d89337257b6f3ec0b300e13c1322f5171d966af (patch)
tree15a03547549dec4f4cebac1328bb92ed25b635d5 /tests
parent64671e53d20c2a30c64b98c747b0e002218c3952 (diff)
Fix/cleanup typos and such in UI messages (and some comments).
Diffstat (limited to 'tests')
-rw-r--r--tests/gtests/blenlib/BLI_math_base_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/gtests/blenlib/BLI_math_base_test.cc b/tests/gtests/blenlib/BLI_math_base_test.cc
index 0059eb54482..d8c01459179 100644
--- a/tests/gtests/blenlib/BLI_math_base_test.cc
+++ b/tests/gtests/blenlib/BLI_math_base_test.cc
@@ -76,7 +76,7 @@ TEST(math_base, CompareFFRelativeZero)
/* Note: in theory, this should return false, since 0.0f and -0.0f have 0x80000000 diff,
- * but overflow in substraction seems to break something here
+ * but overflow in subtraction seems to break something here
* (abs(*(int *)&fn0 - *(int *)&f0) == 0x80000000 == fn0), probably because int32 cannot hold this abs value.
* this is yet another illustration of why one shall never use (near-)zero floats in pure-ULP comparison. */
// EXPECT_FALSE(compare_ff_relative(fn0, f0, -1.0f, 1024));