From 5c603c0abbb34688bfe840fd05e75958143f347f Mon Sep 17 00:00:00 2001 From: Marc Jansen Date: Fri, 29 Jul 2011 09:38:02 +0000 Subject: [PATCH] Correct spelling in documentation. Non functional change. git-svn-id: http://svn.openlayers.org/trunk/openlayers@12199 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf --- lib/OpenLayers/BaseTypes/Size.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/OpenLayers/BaseTypes/Size.js b/lib/OpenLayers/BaseTypes/Size.js index f6ad198193..4a0b1359ef 100644 --- a/lib/OpenLayers/BaseTypes/Size.js +++ b/lib/OpenLayers/BaseTypes/Size.js @@ -45,7 +45,7 @@ OpenLayers.Size = OpenLayers.Class({ * * Returns: * {String} The string representation of OpenLayers.Size object. - * (ex. "w=55,h=66") + * (e.g. "w=55,h=66") */ toString:function() { return ("w=" + this.w + ",h=" + this.h);