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-04-08 09:20:22 +0300
committerCampbell Barton <ideasman42@gmail.com>2021-04-08 13:22:45 +0300
commit3249ab70ef6124e7fb910f987b0e033f42035bfa (patch)
treec2f69de0c987fd5414d2355039263011733608f8 /source/blender/compositor
parent4d4368389945b2b78e5d4f89b544a837bc157930 (diff)
Cleanup: spelling
Diffstat (limited to 'source/blender/compositor')
-rw-r--r--source/blender/compositor/operations/COM_SMAAOperation.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/compositor/operations/COM_SMAAOperation.cc b/source/blender/compositor/operations/COM_SMAAOperation.cc
index 38700c76f07..74807f281d7 100644
--- a/source/blender/compositor/operations/COM_SMAAOperation.cc
+++ b/source/blender/compositor/operations/COM_SMAAOperation.cc
@@ -384,7 +384,7 @@ void SMAABlendingWeightCalculationOperation::executePixel(float output[4],
int bottom = searchYDown(x, y);
int d1 = y - top, d2 = bottom - y;
- /* Fetch the top ang bottom crossing edges: */
+ /* Fetch the top and bottom crossing edges: */
int e1 = 0, e2 = 0;
sample(m_imageReader, x - 1, top, c);
if (c[1] > 0.0) {