Fix typos found by codespell

Most of them are in comments, some in strings.

Signed-off-by: Stefan Weil <sw@weilnetz.de>
This commit is contained in:
Stefan Weil
2015-02-12 16:39:55 +01:00
parent 90ba1140ac
commit e812f2435e
13 changed files with 17 additions and 17 deletions

View File

@@ -220,7 +220,7 @@ describe('ol.format.GPX', function() {
expect(serialized).to.xmleql(ol.xml.parse(text));
});
it('can tranform, read and write a trk with a trkseg', function() {
it('can transform, read and write a trk with a trkseg', function() {
var text =
'<gpx xmlns="http://www.topografix.com/GPX/1/1">' +
' <trk>' +

View File

@@ -919,7 +919,7 @@ describe('ol.format.KML', function() {
expect(g.getGeometries()).to.be.empty();
});
it('can read heterogenous GeometryCollection geometries', function() {
it('can read heterogeneous GeometryCollection geometries', function() {
var text =
'<kml xmlns="http://earth.google.com/kml/2.2">' +
' <Placemark>' +
@@ -2407,7 +2407,7 @@ describe('ol.format.KML', function() {
expect(features).to.have.length(50);
});
it('creates features with heterogenous geometry collections', function() {
it('creates features with heterogeneous geometry collections', function() {
// FIXME decide if we should instead create features with multiple geoms
var feature = features[0];
expect(feature).to.be.an(ol.Feature);

View File

@@ -82,7 +82,7 @@ describe('ol.render.canvas.LineStringReplay', function() {
describe('#getBufferedMaxExtent()', function() {
it('buffers the max extent to accomodate stroke width', function() {
it('buffers the max extent to accommodate stroke width', function() {
var tolerance = 1;
var extent = [-180, -90, 180, 90];
var resolution = 10;
@@ -104,7 +104,7 @@ describe('ol.render.canvas.PolygonReplay', function() {
describe('#getBufferedMaxExtent()', function() {
it('buffers the max extent to accomodate stroke width', function() {
it('buffers the max extent to accommodate stroke width', function() {
var tolerance = 1;
var extent = [-180, -90, 180, 90];
var resolution = 10;