summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGraeme Geldenhuys <graemeg@gmail.com>2014-11-15 21:06:19 +0000
committerGraeme Geldenhuys <graemeg@gmail.com>2014-11-15 21:06:19 +0000
commitd5f04ab2977e0457c4fe8c512d61a1c88daa828b (patch)
tree8e8b2be52bcc935d808cda5a2f9afbbaf567ea2d /src
parent453996807a4806860d30bde520fcc527376f4452 (diff)
downloadfpGUI-d5f04ab2977e0457c4fe8c512d61a1c88daa828b.tar.xz
aggpas: fixes spelling mistake in code comment
Diffstat (limited to 'src')
-rw-r--r--src/corelib/render/software/agg_blur.pas2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/render/software/agg_blur.pas b/src/corelib/render/software/agg_blur.pas
index 5ddda2bc..78e6df72 100644
--- a/src/corelib/render/software/agg_blur.pas
+++ b/src/corelib/render/software/agg_blur.pas
@@ -25,7 +25,7 @@
// http://incubator.quasimondo.com/processing/fast_blur_deluxe.php
// (search phrase "Stackblur: Fast But Goodlooking").
// The major improvement is that there's no more division table
-// that was very expensive to create for large blur radii. Insted,
+// that was very expensive to create for large blur radii. Instead,
// for 8-bit per channel and radius not exceeding 254 the division is
// replaced by multiplication and shift.
//