From 79af86bde5e57819cdfb001d23bd31573b139879 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=89ric=20Lemoine?= Date: Tue, 19 Jun 2012 15:01:50 +0200 Subject: [PATCH] minor doc string additions to ol.Tile --- src/ol/Tile.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ol/Tile.js b/src/ol/Tile.js index ab192b74ba..9c6c2c802e 100644 --- a/src/ol/Tile.js +++ b/src/ol/Tile.js @@ -1,12 +1,14 @@ goog.provide('ol.Tile'); /** + * The Tile class. * @constructor */ ol.Tile = function() { /** * @private + * @type {Element} */ this.img_ = ol.Tile.createImage(); };