From: dooglus Date: Tue, 30 Oct 2007 14:15:05 +0000 (+0000) Subject: Typo: 'eachother' -> 'each other'. X-Git-Url: https://git.pterodactylus.net/?a=commitdiff_plain;h=b9d70da87063fe9f6d22bd1100f78c287b3fa898;p=synfig.git Typo: 'eachother' -> 'each other'. git-svn-id: http://svn.voria.com/code@1030 1f10aa63-cdf2-0310-b900-c93c546f37ac --- diff --git a/synfig-core/trunk/src/synfig/curve_helper.cpp b/synfig-core/trunk/src/synfig/curve_helper.cpp index b066d9d..fcec494 100644 --- a/synfig-core/trunk/src/synfig/curve_helper.cpp +++ b/synfig-core/trunk/src/synfig/curve_helper.cpp @@ -612,7 +612,7 @@ void CIntersect::recurse_intersect(const SCurve &left, const SCurve &right, int left.Split(l1,r1); //subdivide left right.Split(l2,r2); //subdivide right - //Test each cantidate against eachother + //Test each cantidate against each other recurse_intersect(l1,l2); recurse_intersect(l1,r2); recurse_intersect(r1,l2); @@ -625,7 +625,7 @@ bool CIntersect::operator()(const bezier &c1, const bezier &c2) { times.clear(); - //need to subdivide and check recursive bounding regions against eachother + //need to subdivide and check recursive bounding regions against each other //so track a list of dirty curves and compare compare compare diff --git a/synfig-studio/trunk/src/synfigapp/blineconvert.cpp b/synfig-studio/trunk/src/synfigapp/blineconvert.cpp index e8849e0..1f6e3a7 100644 --- a/synfig-studio/trunk/src/synfigapp/blineconvert.cpp +++ b/synfig-studio/trunk/src/synfigapp/blineconvert.cpp @@ -529,7 +529,7 @@ synfigapp::BLineConverter::operator () (std::list &out, cons brk.push_back(i); - //postprocess for breaks too close to eachother + //postprocess for breaks too close to each other Real d = 0; Point p = f[brk.front()];