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>2019-07-07 08:38:41 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-07-07 08:38:41 +0300
commitcd6b49f995fdca5240a9b97fa99b4dd669a047ea (patch)
tree5bdef2750238555e149891e6278a27e9ca5b26ef /source/blender/blenlib
parenta3e2076bc4f7330188fbb1b3338c9235a7b0bc96 (diff)
Cleanup: spelling
Diffstat (limited to 'source/blender/blenlib')
-rw-r--r--source/blender/blenlib/intern/BLI_heap.c2
-rw-r--r--source/blender/blenlib/intern/path_util.c4
-rw-r--r--source/blender/blenlib/intern/storage.c4
3 files changed, 5 insertions, 5 deletions
diff --git a/source/blender/blenlib/intern/BLI_heap.c b/source/blender/blenlib/intern/BLI_heap.c
index 836b11baa85..88b7f83385c 100644
--- a/source/blender/blenlib/intern/BLI_heap.c
+++ b/source/blender/blenlib/intern/BLI_heap.c
@@ -366,7 +366,7 @@ void BLI_heap_remove(Heap *heap, HeapNode *node)
/**
* Can be used to avoid #BLI_heap_remove, #BLI_heap_insert calls,
* balancing the tree still has a performance cost,
- * but is often much less than remove/insert, difference is most noticable with large heaps.
+ * but is often much less than remove/insert, difference is most noticeable with large heaps.
*/
void BLI_heap_node_value_update(Heap *heap, HeapNode *node, float value)
{
diff --git a/source/blender/blenlib/intern/path_util.c b/source/blender/blenlib/intern/path_util.c
index 61b773f6016..111b530a527 100644
--- a/source/blender/blenlib/intern/path_util.c
+++ b/source/blender/blenlib/intern/path_util.c
@@ -1037,7 +1037,7 @@ bool BLI_path_abs(char *path, const char *basepath)
* in this case, there is no use in trying C:/ since it
* will never exist on a unix os.
*
- * Add a / prefix and lowercase the driveletter, remove the :
+ * Add a '/' prefix and lowercase the drive-letter, remove the ':'.
* C:\foo.JPG -> /c/foo.JPG */
if (isalpha(tmp[0]) && tmp[1] == ':' && (tmp[2] == '\\' || tmp[2] == '/')) {
@@ -1552,7 +1552,7 @@ bool BLI_path_extension_glob_validate(char *ext_fnmatch)
only_wildcards = true;
}
/* Only one group in the pattern, so even if its only made of wildcard(s),
- * it is assumed vaid. */
+ * it is assumed valid. */
return false;
}
diff --git a/source/blender/blenlib/intern/storage.c b/source/blender/blenlib/intern/storage.c
index b34a9c0a44e..bdaa7be60cf 100644
--- a/source/blender/blenlib/intern/storage.c
+++ b/source/blender/blenlib/intern/storage.c
@@ -15,12 +15,12 @@
*
* The Original Code is Copyright (C) 2001-2002 by NaN Holding BV.
* All rights reserved.
- * Reorganised mar-01 nzc
- * Some really low-level file thingies.
*/
/** \file
* \ingroup bli
+ *
+ * Some really low-level file operations.
*/
#include <sys/types.h>