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 <campbell@blender.org>2022-09-21 04:57:20 +0300
committerCampbell Barton <campbell@blender.org>2022-09-21 05:00:01 +0300
commit5517c848bdf18df758466c0c6c8b7389f9df558a (patch)
tree5a7fecd5e76dc439e0b4b7e04ab0893c562d474c /source/blender/blenlib
parente9bdf8ebc3774f8f866ec9562b4552c98c7fd22f (diff)
Cleanup: spelling in comments
Diffstat (limited to 'source/blender/blenlib')
-rw-r--r--source/blender/blenlib/BLI_lazy_threading.hh2
-rw-r--r--source/blender/blenlib/intern/storage.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenlib/BLI_lazy_threading.hh b/source/blender/blenlib/BLI_lazy_threading.hh
index 61532fe24f0..b5a15919c89 100644
--- a/source/blender/blenlib/BLI_lazy_threading.hh
+++ b/source/blender/blenlib/BLI_lazy_threading.hh
@@ -21,7 +21,7 @@
* Given those constraints, a single grain size cannot be determined. One could just schedule all
* tasks individually but that would create a lot of overhead when the tasks happen to be very
* small. While TBB will keep all tasks on a single thread if the other threads are busy, if they
- * are idle they will start stealing the work even if that's not benefitial for overall
+ * are idle they will start stealing the work even if that's not beneficial for overall
* performance.
*
* This file provides a simple API that allows a task scheduler to properly handle tasks whose size
diff --git a/source/blender/blenlib/intern/storage.c b/source/blender/blenlib/intern/storage.c
index 4fa5ca0c088..c04fc41ab4d 100644
--- a/source/blender/blenlib/intern/storage.c
+++ b/source/blender/blenlib/intern/storage.c
@@ -259,7 +259,7 @@ eFileAttributes BLI_file_attributes(const char *path)
#ifndef __APPLE__
bool BLI_file_alias_target(const char *filepath,
/* This parameter can only be `const` on Linux since
- * redirections are not supported there.
+ * redirection is not supported there.
* NOLINTNEXTLINE: readability-non-const-parameter. */
char r_targetpath[/*FILE_MAXDIR*/])
{