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-01-20 03:55:33 +0300
committerCampbell Barton <campbell@blender.org>2022-01-20 03:59:20 +0300
commiteb3ff1d6f9ca231f7cfde4a5b8255fa895d80d00 (patch)
treef85e2ebda588a62d98e7bf1d6d8575297d73d4b7 /source/blender/io/wavefront_obj
parent1d536c21dd390e08d36cc398433e6a6ac2d9bdd5 (diff)
Cleanup: spelling in comments
Diffstat (limited to 'source/blender/io/wavefront_obj')
-rw-r--r--source/blender/io/wavefront_obj/exporter/obj_export_mesh.hh4
-rw-r--r--source/blender/io/wavefront_obj/tests/obj_exporter_tests.cc2
2 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/io/wavefront_obj/exporter/obj_export_mesh.hh b/source/blender/io/wavefront_obj/exporter/obj_export_mesh.hh
index 3113a82b4d1..390d8034337 100644
--- a/source/blender/io/wavefront_obj/exporter/obj_export_mesh.hh
+++ b/source/blender/io/wavefront_obj/exporter/obj_export_mesh.hh
@@ -172,8 +172,8 @@ class OBJMesh : NonCopyable {
*/
float3 calc_poly_normal(int poly_index) const;
/**
- * Find the unqique normals of the mesh and return them in \a r_normal_coords.
- * Store the indices into that vector with for each loop in this OBJMesh.
+ * Find the unique normals of the mesh and return them in \a r_normal_coords.
+ * Store the indices into that vector with for each loop in this #OBJMesh.
*/
void store_normal_coords_and_indices(Vector<float3> &r_normal_coords);
/**
diff --git a/source/blender/io/wavefront_obj/tests/obj_exporter_tests.cc b/source/blender/io/wavefront_obj/tests/obj_exporter_tests.cc
index 1890b349fd1..92d478c20a1 100644
--- a/source/blender/io/wavefront_obj/tests/obj_exporter_tests.cc
+++ b/source/blender/io/wavefront_obj/tests/obj_exporter_tests.cc
@@ -29,7 +29,7 @@
#include "obj_exporter_tests.hh"
namespace blender::io::obj {
-/* Set this true to keep comparison-failing test ouput in temp file directory. */
+/* Set this true to keep comparison-failing test output in temp file directory. */
constexpr bool save_failing_test_output = false;
/* This is also the test name. */