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-12-17 08:28:28 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-12-17 08:30:39 +0300
commit7d2d2ffa76647871836f779f013c99e474228f3d (patch)
treec44bd244955fde84571d1405ebf29df6b143ddf0 /source/creator/creator.c
parent8ebc6be43ddf5a4c28b848c62d09f9435dd1bffe (diff)
Cleanup: spelling
Diffstat (limited to 'source/creator/creator.c')
-rw-r--r--source/creator/creator.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/source/creator/creator.c b/source/creator/creator.c
index 32377da5284..58d12527f1c 100644
--- a/source/creator/creator.c
+++ b/source/creator/creator.c
@@ -113,13 +113,14 @@ void main_python_exit(void);
#endif
#ifdef WITH_USD
-/* Workaround to make it possible to pass a path at runtime to USD.
+/**
+ * Workaround to make it possible to pass a path at runtime to USD.
*
* USD requires some JSON files, and it uses a static constructor to determine the possible
- * filesystem paths to find those files. This made it impossible for Blender to pass a path to the
+ * file-system paths to find those files. This made it impossible for Blender to pass a path to the
* USD library at runtime, as the constructor would run before Blender's main() function. We have
* patched USD (see usd.diff) to avoid that particular static constructor, and have an
- * initialisation function instead.
+ * initialization function instead.
*
* This function is implemented in the USD source code, pxr/base/lib/plug/initConfig.cpp.
*/