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-03-22 04:09:48 +0300
committerCampbell Barton <ideasman42@gmail.com>2020-03-22 04:17:25 +0300
commitad7bb8e42c385f6777e14649bd238de2348ad31b (patch)
tree503a787291a8dc7b7072d6fd0b03fcdd45ea0af1 /source/blender/io
parent1e4f6b231ce54e894b308c00e56525c085db8781 (diff)
Cleanup: spelling, correct Mesh.mface docs
Diffstat (limited to 'source/blender/io')
-rw-r--r--source/blender/io/collada/ArmatureImporter.cpp5
-rw-r--r--source/blender/io/usd/intern/usd_writer_abstract.h2
2 files changed, 4 insertions, 3 deletions
diff --git a/source/blender/io/collada/ArmatureImporter.cpp b/source/blender/io/collada/ArmatureImporter.cpp
index ed8984a4239..4e9f31182f1 100644
--- a/source/blender/io/collada/ArmatureImporter.cpp
+++ b/source/blender/io/collada/ArmatureImporter.cpp
@@ -551,8 +551,8 @@ Object *ArmatureImporter::create_armature_bones(Main *bmain, SkinInfo &skin)
*/
/**
- * Pseudocode:
- *
+ * Pseudo-code:
+ * <pre>
* find_node_in_tree(node, root_joint)
*
* skin::find_root_joints(root_joints):
@@ -575,6 +575,7 @@ Object *ArmatureImporter::create_armature_bones(Main *bmain, SkinInfo &skin)
* }
*
* endloop:
+ * </pre>
*/
SkinInfo *a = &skin;
diff --git a/source/blender/io/usd/intern/usd_writer_abstract.h b/source/blender/io/usd/intern/usd_writer_abstract.h
index 9c8422b52f1..cf0f7e9d437 100644
--- a/source/blender/io/usd/intern/usd_writer_abstract.h
+++ b/source/blender/io/usd/intern/usd_writer_abstract.h
@@ -56,7 +56,7 @@ class USDAbstractWriter : public AbstractHierarchyWriter {
/* Returns true if the data to be written is actually supported. This would, for example, allow a
* hypothetical camera writer accept a perspective camera but reject an orthogonal one.
*
- * Returning false from a transform writer will prevent the object and all its decendants from
+ * Returning false from a transform writer will prevent the object and all its descendants from
* being exported. Returning false from a data writer (object data, hair, or particles) will
* only prevent that data from being written (and thus cause the object to be exported as an
* Empty). */