From: dooglus Date: Mon, 3 Sep 2007 00:17:29 +0000 (+0000) Subject: Typo. X-Git-Url: https://git.pterodactylus.net/?a=commitdiff_plain;h=44d6b0eb36ccf71df50ffc2d0a45f8d7431397d9;p=synfig.git Typo. git-svn-id: http://svn.voria.com/code@572 1f10aa63-cdf2-0310-b900-c93c546f37ac --- diff --git a/synfig-core/trunk/src/synfig/color.cpp b/synfig-core/trunk/src/synfig/color.cpp index d70ed3f..9ca9914 100644 --- a/synfig-core/trunk/src/synfig/color.cpp +++ b/synfig-core/trunk/src/synfig/color.cpp @@ -376,7 +376,7 @@ blendfunc_DIVIDE(Color &a,Color &b,float amount) // We add COLOR_EPSILON in order to avoid a divide-by-zero condition. // This causes DIVIDE to bias toward positive values, but the effect is - // really neglegable. There is a reason why we use COLOR_EPSILON--we + // really negligible. There is a reason why we use COLOR_EPSILON--we // want the change to be imperceptable. b.set_r(((b.get_r()/(a.get_r()+COLOR_EPSILON))-b.get_r())*(amount)+b.get_r());