Typo: 'eachother' -> 'each other'.
authordooglus <dooglus@1f10aa63-cdf2-0310-b900-c93c546f37ac>
Tue, 30 Oct 2007 14:15:05 +0000 (14:15 +0000)
committerdooglus <dooglus@1f10aa63-cdf2-0310-b900-c93c546f37ac>
Tue, 30 Oct 2007 14:15:05 +0000 (14:15 +0000)
git-svn-id: http://svn.voria.com/code@1030 1f10aa63-cdf2-0310-b900-c93c546f37ac

synfig-core/trunk/src/synfig/curve_helper.cpp
synfig-studio/trunk/src/synfigapp/blineconvert.cpp

index b066d9d..fcec494 100644 (file)
@@ -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<Point> &c1, const bezier<Point> &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
 
 
index e8849e0..1f6e3a7 100644 (file)
@@ -529,7 +529,7 @@ synfigapp::BLineConverter::operator () (std::list<synfig::BLinePoint> &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()];