From 8296a1f1348ab0b01d5ffc602af86726e2f7508d Mon Sep 17 00:00:00 2001 From: Frederic Junod Date: Thu, 21 Mar 2013 09:19:23 +0100 Subject: [PATCH] Minor jsdoc fix --- src/ol/structs/lrucache.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ol/structs/lrucache.js b/src/ol/structs/lrucache.js index 7792dc2f61..b8f0c0cafb 100644 --- a/src/ol/structs/lrucache.js +++ b/src/ol/structs/lrucache.js @@ -6,10 +6,10 @@ goog.require('goog.object'); /** - * @constructor * Implements a Least-Recently-Used cache where the keys do not conflict with * Object's properties (e.g. 'hasOwnProperty' is not allowed as a key). Expiring * items from the cache is the responsibility of the user. + * @constructor */ ol.structs.LRUCache = function() {