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-10-07 02:32:02 +0300
committerCampbell Barton <campbell@blender.org>2022-10-07 02:42:56 +0300
commitecc404ea1a37a682c0b75ec10fcece9325a15e9d (patch)
treecc5da944238a717ad28a079a3c008d51b871dbbd /source/blender/modifiers/intern/MOD_multires.cc
parentb04b87b32244fe1aa00878ca596b3c763dc7297b (diff)
Cleanup: spelling in comments
Diffstat (limited to 'source/blender/modifiers/intern/MOD_multires.cc')
-rw-r--r--source/blender/modifiers/intern/MOD_multires.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/modifiers/intern/MOD_multires.cc b/source/blender/modifiers/intern/MOD_multires.cc
index 6342ff384a4..e4c90eb237b 100644
--- a/source/blender/modifiers/intern/MOD_multires.cc
+++ b/source/blender/modifiers/intern/MOD_multires.cc
@@ -212,7 +212,7 @@ static Mesh *modifyMesh(ModifierData *md, const ModifierEvalContext *ctx, Mesh *
MultiresRuntimeData *runtime_data = multires_ensure_runtime(mmd);
Subdiv *subdiv = subdiv_descriptor_ensure(mmd, &subdiv_settings, mesh);
if (subdiv == nullptr) {
- /* Happens on bad topology, ut also on empty input mesh. */
+ /* Happens on bad topology, also on empty input mesh. */
return result;
}
const bool use_clnors = mmd->flags & eMultiresModifierFlag_UseCustomNormals &&
@@ -308,7 +308,7 @@ static void deformMatrices(ModifierData *md,
MultiresRuntimeData *runtime_data = multires_ensure_runtime(mmd);
Subdiv *subdiv = subdiv_descriptor_ensure(mmd, &subdiv_settings, mesh);
if (subdiv == nullptr) {
- /* Happens on bad topology, ut also on empty input mesh. */
+ /* Happens on bad topology, also on empty input mesh. */
return;
}
BKE_subdiv_displacement_attach_from_multires(subdiv, mesh, mmd);