diff --git a/lib/OpenLayers/Util.js b/lib/OpenLayers/Util.js index c56154a7d6..6b9b308751 100644 --- a/lib/OpenLayers/Util.js +++ b/lib/OpenLayers/Util.js @@ -12,13 +12,12 @@ OpenLayers.Util=new Object(); OpenLayers.Pixel = Class.create(); OpenLayers.Pixel.prototype = { - /* @type float */ + /** @type float */ x: 0.0, - /* @type float */ + /** @type float */ y: 0.0, - /** * @constructor * @@ -31,7 +30,7 @@ OpenLayers.Pixel.prototype = { }, /** - * @return string representation of Pixel, ex: "x=200.4,y=242.2" + * @return string representation of Pixel. ex: "x=200.4,y=242.2" * @type str */ toString:function() { @@ -88,7 +87,7 @@ OpenLayers.Pixel.prototype = { return new OpenLayers.Pixel(this.x + x, this.y + y); }, - /* @type str */ + /** @type str */ CLASS_NAME: "OpenLayers.Pixel" };