We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47e4371 commit 606c62fCopy full SHA for 606c62f
tests/BaseTypes/Class.html
@@ -85,16 +85,16 @@
85
86
// test with an abstract class (i.e. a class that doesn't have an initialize
87
// method) as the parent class
88
- var Vehicule = OpenLayers.Class({
+ var Vehicle = OpenLayers.Class({
89
numWheels: null
90
});
91
- var Bike = OpenLayers.Class(Vehicule, {
+ var Bike = OpenLayers.Class(Vehicle, {
92
initialize: function() {
93
this.numWheels = 2;
94
}
95
96
var b = new Bike();
97
- t.ok(b instanceof Vehicule, "a bike is a vehicule");
+ t.ok(b instanceof Vehicle, "a bike is a vehicle");
98
99
// test inheritance with something that has a non-function initialize property
100
var P = OpenLayers.Class({
0 commit comments