From a1a2ab415fe33d35ee01534539b75ffe0fdc1ea8 Mon Sep 17 00:00:00 2001 From: Tom Payne Date: Tue, 19 Mar 2013 21:34:31 +0100 Subject: [PATCH] Fix some trivial typos --- test/spec/ol/color.test.js | 2 +- test/spec/ol/object.test.js | 2 +- test/spec/ol/structs/rtree.test.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test/spec/ol/color.test.js b/test/spec/ol/color.test.js index 78727b9b36..f579a7f3ce 100644 --- a/test/spec/ol/color.test.js +++ b/test/spec/ol/color.test.js @@ -52,7 +52,7 @@ describe('ol.Color', function() { expect(c.b).to.be(255); }); - it('limits 1 to 0-1', function() { + it('limits a to 0-1', function() { var c; // legit a diff --git a/test/spec/ol/object.test.js b/test/spec/ol/object.test.js index 2facaaed56..d51a01ec83 100644 --- a/test/spec/ol/object.test.js +++ b/test/spec/ol/object.test.js @@ -455,7 +455,7 @@ describe('ol.Object', function() { }); }); - describe('case sentivity', function() { + describe('case sensitivity', function() { var listener1, listener2; beforeEach(function() { diff --git a/test/spec/ol/structs/rtree.test.js b/test/spec/ol/structs/rtree.test.js index 11bacc963f..a4a87ad7a7 100644 --- a/test/spec/ol/structs/rtree.test.js +++ b/test/spec/ol/structs/rtree.test.js @@ -35,7 +35,7 @@ describe('ol.structs.RTree', function() { .to.be(0); }); - it('can store thosands of items and find fast', function() { + it('can store thousands of items and find fast', function() { for (var i = 7; i <= 10000; ++i) { rTree.put(new ol.Rectangle(Math.random() * -10, Math.random() * -10, Math.random() * 10, Math.random() * 10), i);