From e9bc79203bceebf579d216c029b47031e8786bd2 Mon Sep 17 00:00:00 2001 From: euzuro Date: Wed, 21 Jun 2006 12:48:44 +0000 Subject: [PATCH] correct comment/JSDOC git-svn-id: http://svn.openlayers.org/trunk/openlayers@643 dc9f47b5-9b13-0410-9fdd-eb0c1a62fdaf --- lib/OpenLayers/Util.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/OpenLayers/Util.js b/lib/OpenLayers/Util.js index f0f1af3f3e..da622532a2 100644 --- a/lib/OpenLayers/Util.js +++ b/lib/OpenLayers/Util.js @@ -203,7 +203,7 @@ OpenLayers.LonLat.prototype = { * * @return A new OpenLayers.LonLat object with the lon and lat passed-in * added to this's. - * @type OpenLayers.Pixel + * @type OpenLayers.LonLat */ add:function(lon, lat) { return new OpenLayers.LonLat(this.lon + lon, this.lat + lat);