X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-core%2Ftags%2Fstable%2Fsrc%2Fsynfig%2Fpolynomial_root.cpp;h=5098f3d477a58d9201737181b7e863faface2337;hb=391f6a3be479646721d8cc78b5ee673db17bd540;hp=ab792f8899d548bff9300a8d0bbe86e5b9369e70;hpb=684cf1db661a9a5cbc142238cf05d6d2f7aa3f89;p=synfig.git diff --git a/synfig-core/tags/stable/src/synfig/polynomial_root.cpp b/synfig-core/tags/stable/src/synfig/polynomial_root.cpp index ab792f8..5098f3d 100644 --- a/synfig-core/tags/stable/src/synfig/polynomial_root.cpp +++ b/synfig-core/tags/stable/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;