From fde51d90a74f8022ef55704942a8de6609064321 Mon Sep 17 00:00:00 2001 From: Marc Jansen Date: Fri, 29 Jul 2011 09:36:35 +0000 Subject: [PATCH] Correct spelling in documentation. Non functional change. git-svn-id: http://svn.openlayers.org/trunk/openlayers@12198 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf --- lib/OpenLayers/BaseTypes/Bounds.js | 6 +++--- lib/OpenLayers/BaseTypes/LonLat.js | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/OpenLayers/BaseTypes/Bounds.js b/lib/OpenLayers/BaseTypes/Bounds.js index a86e8293dd..e33c49667f 100644 --- a/lib/OpenLayers/BaseTypes/Bounds.js +++ b/lib/OpenLayers/BaseTypes/Bounds.js @@ -155,7 +155,7 @@ OpenLayers.Bounds = OpenLayers.Class({ * * Returns: * {String} Simple String representation of bounds object. - * (ex. "5,42,10,45") + * (e.g. "5,42,10,45") */ toBBOX:function(decimal, reverseAxisOrder) { if (decimal== null) { @@ -615,7 +615,7 @@ OpenLayers.Bounds = OpenLayers.Class({ * parameter string * * Parameters: - * str - {String}Comma-separated bounds string. (ex. "5,42,10,45") + * str - {String}Comma-separated bounds string. (e.g. "5,42,10,45") * reverseAxisOrder - {Boolean} Does the string use reverse axis order? * * Returns: @@ -633,7 +633,7 @@ OpenLayers.Bounds.fromString = function(str, reverseAxisOrder) { * from an array * * Parameters: - * bbox - {Array(Float)} Array of bounds values (ex. [5,42,10,45]) + * bbox - {Array(Float)} Array of bounds values (e.g. [5,42,10,45]) * reverseAxisOrder - {Boolean} Does the array use reverse axis order? * * Returns: diff --git a/lib/OpenLayers/BaseTypes/LonLat.js b/lib/OpenLayers/BaseTypes/LonLat.js index 798cd325f4..16e3de4965 100644 --- a/lib/OpenLayers/BaseTypes/LonLat.js +++ b/lib/OpenLayers/BaseTypes/LonLat.js @@ -50,7 +50,7 @@ OpenLayers.LonLat = OpenLayers.Class({ * * Returns: * {String} String representation of OpenLayers.LonLat object. - * (ex. "lon=5,lat=42") + * (e.g. "lon=5,lat=42") */ toString:function() { return ("lon=" + this.lon + ",lat=" + this.lat); @@ -61,7 +61,7 @@ OpenLayers.LonLat = OpenLayers.Class({ * * Returns: * {String} Shortened String representation of OpenLayers.LonLat object. - * (ex. "5, 42") + * (e.g. "5, 42") */ toShortString:function() { return (this.lon + ", " + this.lat); @@ -180,7 +180,7 @@ OpenLayers.LonLat = OpenLayers.Class({ * * Parameters: * str - {String} Comma-separated Lon,Lat coordinate string. - * (ex. "5,40") + * (e.g. "5,40") * * Returns: * {} New object built from the