Merge pull request #654 from nexushoratio/to-push

Spell checking, a-c.
This commit is contained in:
Jon Atkins
2013-11-22 21:25:32 -08:00
11 changed files with 12 additions and 12 deletions

2
external/KML.js vendored
View File

@ -275,7 +275,7 @@ L.Util.extend(L.KML, {
var el = xml.getElementsByTagName('coordinates');
var coords = [];
for (var j = 0; j < el.length; j++) {
// text might span many childnodes
// text might span many childNodes
coords = coords.concat(this._read_coords(el[j]));
}
return coords;