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>2020-09-09 06:19:50 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-09-09 06:30:05 +0300
commit23f1dea4408fa87db5193b88b4315d8de15804b2 (patch)
tree6035831b3fb3e6a8c68953b0390b08574d74ac6b /source/blender/io
parent1f75be8a40041e94711c5d17507d88d8e64c1977 (diff)
Cleanup: spelling
Diffstat (limited to 'source/blender/io')
-rw-r--r--source/blender/io/collada/TransformWriter.cpp2
-rw-r--r--source/blender/io/usd/intern/usd_writer_abstract.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/io/collada/TransformWriter.cpp b/source/blender/io/collada/TransformWriter.cpp
index 0311f22fe11..7c9d26e4fde 100644
--- a/source/blender/io/collada/TransformWriter.cpp
+++ b/source/blender/io/collada/TransformWriter.cpp
@@ -66,7 +66,7 @@ void TransformWriter::add_node_transform_ob(COLLADASW::Node &node,
bool limit_precision = export_settings.get_limit_precision();
/* Export the local Matrix (relative to the object parent,
- * be it an object, bone or vertex(-tices)). */
+ * be it an object, bone or vertices (one or more)). */
Matrix f_obmat;
BKE_object_matrix_local_get(ob, f_obmat);
diff --git a/source/blender/io/usd/intern/usd_writer_abstract.h b/source/blender/io/usd/intern/usd_writer_abstract.h
index 88df7cb1cc6..6cf7c79c5fa 100644
--- a/source/blender/io/usd/intern/usd_writer_abstract.h
+++ b/source/blender/io/usd/intern/usd_writer_abstract.h
@@ -78,7 +78,7 @@ class USDAbstractWriter : public AbstractHierarchyWriter {
pxr::UsdGeomImageable &usd_geometry);
/* Turn `prim` into an instance referencing `context.original_export_path`.
- * Return true when the instancing was succesful, false otherwise. */
+ * Return true when the instancing was successful, false otherwise. */
virtual bool mark_as_instance(const HierarchyContext &context, const pxr::UsdPrim &prim);
};