From: dooglus Date: Tue, 30 Oct 2007 15:06:39 +0000 (+0000) Subject: Typo: 'efficent' -> 'efficient'. X-Git-Url: https://git.pterodactylus.net/?a=commitdiff_plain;h=dc26aa5ac971d708f9dfd82a9301d1ce9fe412b9;p=synfig.git Typo: 'efficent' -> 'efficient'. git-svn-id: http://svn.voria.com/code@1049 1f10aa63-cdf2-0310-b900-c93c546f37ac --- diff --git a/synfig-core/trunk/src/synfig/polynomial_root.cpp b/synfig-core/trunk/src/synfig/polynomial_root.cpp index ab792f8..5098f3d 100644 --- a/synfig-core/trunk/src/synfig/polynomial_root.cpp +++ b/synfig-core/trunk/src/synfig/polynomial_root.cpp @@ -123,7 +123,7 @@ void laguer(Complex a[], int m, Complex *x, int *its) d = f = Complex(0,0); //clear variables for use abx = abs(*x); //the magnitude of the current root - //Efficent computation of the polynomial and its first 2 derivatives + //Efficient computation of the polynomial and its first 2 derivatives for(j = m-1; j >= 0; --j) { f = (*x)*f + d;