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>2021-03-10 07:47:50 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-03-10 07:47:50 +0300
commit70e73974b593d2fe3adfd9c964274c037fb51887 (patch)
tree680ab58a61b941964723bad7a318b28af2aab793 /source/blender/nodes
parent548e2e2f251e7dcecfc4db0f8d8ea04414fc2b56 (diff)
Cleanup: spelling
Diffstat (limited to 'source/blender/nodes')
-rw-r--r--source/blender/nodes/geometry/nodes/node_geo_subdivide_smooth.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/nodes/geometry/nodes/node_geo_subdivide_smooth.cc b/source/blender/nodes/geometry/nodes/node_geo_subdivide_smooth.cc
index 4d9b8110d65..b56100e21bf 100644
--- a/source/blender/nodes/geometry/nodes/node_geo_subdivide_smooth.cc
+++ b/source/blender/nodes/geometry/nodes/node_geo_subdivide_smooth.cc
@@ -69,7 +69,7 @@ static void geo_node_subdivide_smooth_exec(GeoNodeExecParams params)
#else
const int subdiv_level = clamp_i(params.extract_input<int>("Level"), 0, 30);
- /* Only process subdivion if level is greater than 0. */
+ /* Only process subdivision if level is greater than 0. */
if (subdiv_level == 0) {
params.set_output("Geometry", std::move(geometry_set));
return;