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-09-10 07:19:34 +0300
committerCampbell Barton <campbell@blender.org>2022-09-10 07:19:34 +0300
commit5a0447ca88e7a003853d96bcf2ab1981f9a6b674 (patch)
tree7cf7ac3a0e2c60e4ada5c47f6b6bd7e8ff7abd55 /source/blender/nodes
parenteae081f8fd571cc7bed79acf356efc14f276a86a (diff)
Cleanup: spelling in comments
Diffstat (limited to 'source/blender/nodes')
-rw-r--r--source/blender/nodes/composite/nodes/node_composite_bokehblur.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/nodes/composite/nodes/node_composite_bokehblur.cc b/source/blender/nodes/composite/nodes/node_composite_bokehblur.cc
index 182169405de..9c0617ee8c3 100644
--- a/source/blender/nodes/composite/nodes/node_composite_bokehblur.cc
+++ b/source/blender/nodes/composite/nodes/node_composite_bokehblur.cc
@@ -113,7 +113,7 @@ class BokehBlurOperation : public NodeOperation {
* computations of the bokeh blur. */
const float size = math::clamp(get_input("Size").get_float_value_default(1.0f), 0.0f, 10.0f);
- /* The 100 divisor is arbitrary and was chosen using visual judgement. */
+ /* The 100 divisor is arbitrary and was chosen using visual judgment. */
return size * (max_size / 100.0f);
}