diff options
author | Graeme Geldenhuys <graemeg@gmail.com> | 2014-11-15 21:06:19 +0000 |
---|---|---|
committer | Graeme Geldenhuys <graemeg@gmail.com> | 2014-11-15 21:06:19 +0000 |
commit | d5f04ab2977e0457c4fe8c512d61a1c88daa828b (patch) | |
tree | 8e8b2be52bcc935d808cda5a2f9afbbaf567ea2d | |
parent | 453996807a4806860d30bde520fcc527376f4452 (diff) | |
download | fpGUI-d5f04ab2977e0457c4fe8c512d61a1c88daa828b.tar.xz |
aggpas: fixes spelling mistake in code comment
-rw-r--r-- | src/corelib/render/software/agg_blur.pas | 2 |
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. // |