From 3dd460aa7fbb7021130b58f7809cfda5b69df201 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 10 Jul 2020 11:41:14 +1000 Subject: Cleanup: spelling --- source/blender/blenlib/BLI_resource_collector.hh | 2 +- source/blender/blenlib/intern/rand.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/blenlib') diff --git a/source/blender/blenlib/BLI_resource_collector.hh b/source/blender/blenlib/BLI_resource_collector.hh index b8cd720583f..672a1269962 100644 --- a/source/blender/blenlib/BLI_resource_collector.hh +++ b/source/blender/blenlib/BLI_resource_collector.hh @@ -91,7 +91,7 @@ class ResourceCollector : NonCopyable, NonMovable { /** * Pass ownership of some resource to the ResourceCollector. The given free function will be - * calld when the collector is destructed. + * called when the collector is destructed. */ void add(void *userdata, void (*free)(void *), const char *name) { diff --git a/source/blender/blenlib/intern/rand.cc b/source/blender/blenlib/intern/rand.cc index 75da906c850..79e98181958 100644 --- a/source/blender/blenlib/intern/rand.cc +++ b/source/blender/blenlib/intern/rand.cc @@ -427,7 +427,7 @@ BLI_INLINE double radical_inverse(unsigned int n) { double u = 0; - /* This reverse the bitwise representation + /* This reverse the bit-wise representation * around the decimal point. */ for (double p = 0.5; n; p *= 0.5, n >>= 1) { if (n & 1) { -- cgit v1.2.3