Correct spelling in documentation. Non functional change.

git-svn-id: http://svn.openlayers.org/trunk/openlayers@12198 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf
This commit is contained in:
Marc Jansen
2011-07-29 09:36:35 +00:00
parent aef34f2475
commit fde51d90a7
2 changed files with 6 additions and 6 deletions
+3 -3
View File
@@ -155,7 +155,7 @@ OpenLayers.Bounds = OpenLayers.Class({
* *
* Returns: * Returns:
* {String} Simple String representation of bounds object. * {String} Simple String representation of bounds object.
* (ex. <i>"5,42,10,45"</i>) * (e.g. <i>"5,42,10,45"</i>)
*/ */
toBBOX:function(decimal, reverseAxisOrder) { toBBOX:function(decimal, reverseAxisOrder) {
if (decimal== null) { if (decimal== null) {
@@ -615,7 +615,7 @@ OpenLayers.Bounds = OpenLayers.Class({
* parameter string * parameter string
* *
* Parameters: * Parameters:
* str - {String}Comma-separated bounds string. (ex. <i>"5,42,10,45"</i>) * str - {String}Comma-separated bounds string. (e.g. <i>"5,42,10,45"</i>)
* reverseAxisOrder - {Boolean} Does the string use reverse axis order? * reverseAxisOrder - {Boolean} Does the string use reverse axis order?
* *
* Returns: * Returns:
@@ -633,7 +633,7 @@ OpenLayers.Bounds.fromString = function(str, reverseAxisOrder) {
* from an array * from an array
* *
* Parameters: * Parameters:
* bbox - {Array(Float)} Array of bounds values (ex. <i>[5,42,10,45]</i>) * bbox - {Array(Float)} Array of bounds values (e.g. <i>[5,42,10,45]</i>)
* reverseAxisOrder - {Boolean} Does the array use reverse axis order? * reverseAxisOrder - {Boolean} Does the array use reverse axis order?
* *
* Returns: * Returns:
+3 -3
View File
@@ -50,7 +50,7 @@ OpenLayers.LonLat = OpenLayers.Class({
* *
* Returns: * Returns:
* {String} String representation of OpenLayers.LonLat object. * {String} String representation of OpenLayers.LonLat object.
* (ex. <i>"lon=5,lat=42"</i>) * (e.g. <i>"lon=5,lat=42"</i>)
*/ */
toString:function() { toString:function() {
return ("lon=" + this.lon + ",lat=" + this.lat); return ("lon=" + this.lon + ",lat=" + this.lat);
@@ -61,7 +61,7 @@ OpenLayers.LonLat = OpenLayers.Class({
* *
* Returns: * Returns:
* {String} Shortened String representation of OpenLayers.LonLat object. * {String} Shortened String representation of OpenLayers.LonLat object.
* (ex. <i>"5, 42"</i>) * (e.g. <i>"5, 42"</i>)
*/ */
toShortString:function() { toShortString:function() {
return (this.lon + ", " + this.lat); return (this.lon + ", " + this.lat);
@@ -180,7 +180,7 @@ OpenLayers.LonLat = OpenLayers.Class({
* *
* Parameters: * Parameters:
* str - {String} Comma-separated Lon,Lat coordinate string. * str - {String} Comma-separated Lon,Lat coordinate string.
* (ex. <i>"5,40"</i>) * (e.g. <i>"5,40"</i>)
* *
* Returns: * Returns:
* {<OpenLayers.LonLat>} New <OpenLayers.LonLat> object built from the * {<OpenLayers.LonLat>} New <OpenLayers.LonLat> object built from the