Skip to content

Commit ea879e7

Browse files
committed
Fix typos
1 parent 6c738e2 commit ea879e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/OpenLayers/Control/Graticule.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ OpenLayers.Control.Graticule = OpenLayers.Class(OpenLayers.Control, {
157157

158158
/**
159159
* Property: projectionCenterLonLat
160-
* {OpenLayers.LonLat} The center of the projection's validty extent.
160+
* {OpenLayers.LonLat} The center of the projection's validity extent.
161161
*/
162162
projectionCenterLonLat: null,
163163

@@ -407,7 +407,7 @@ OpenLayers.Control.Graticule = OpenLayers.Class(OpenLayers.Control, {
407407
var centerLonLat = center.clone().transform(
408408
this.projection, this.epsg4326Projection);
409409
// If centerLonLat could not be transformed (e.g. [0, 0] in polar
410-
// prjections), we shift the center a bit to get a result.
410+
// projections), we shift the center a bit to get a result.
411411
if (isNaN(centerLonLat.lon) || isNaN(centerLonLat.lat)) {
412412
centerLonLat = center.add(0.000000001, 0.000000001).transform(
413413
this.projection, this.epsg4326Projection);

0 commit comments

Comments
 (0)