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>2021-06-05 08:03:09 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-06-05 08:03:59 +0300
commit022f8b552d7c8efe39527ec49a593a706fa0c8fc (patch)
tree0109a65a61b78dd9a59be8209af2f06f03232f1f /source/blender/blenlib
parent14508ef100c9c6c67300ac480b32c88c0e134f25 (diff)
Cleanup: spelling in comments
Also remove reference to function that never existed for adding `bNode`.
Diffstat (limited to 'source/blender/blenlib')
-rw-r--r--source/blender/blenlib/intern/memory_utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/intern/memory_utils.c b/source/blender/blenlib/intern/memory_utils.c
index d477c20a242..5ca7b96c136 100644
--- a/source/blender/blenlib/intern/memory_utils.c
+++ b/source/blender/blenlib/intern/memory_utils.c
@@ -31,7 +31,7 @@
#include "BLI_strict_flags.h"
/**
- * Check if memory is zero'd, as with memset(arr, 0, arr_size)
+ * Check if memory is zeroed, as with `memset(arr, 0, arr_size)`.
*/
bool BLI_memory_is_zero(const void *arr, const size_t arr_size)
{