From b121ced3da032a5d99dc1c0b498302cb71040211 Mon Sep 17 00:00:00 2001 From: Frederic Junod Date: Mon, 26 Mar 2018 10:50:59 +0200 Subject: [PATCH] Module type for ol.format.Lexer --- src/ol/format/WKT.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ol/format/WKT.js b/src/ol/format/WKT.js index dad5bc72fb..453741bf7f 100644 --- a/src/ol/format/WKT.js +++ b/src/ol/format/WKT.js @@ -211,13 +211,13 @@ Lexer.prototype.readText_ = function() { /** * Class to parse the tokens from the WKT string. - * @param {ol.format.Lexer} lexer The lexer. + * @param {module:ol/format/WKT~Lexer} lexer The lexer. * @constructor */ const Parser = function(lexer) { /** - * @type {ol.format.Lexer} + * @type {module:ol/format/WKT~Lexer} * @private */ this.lexer_ = lexer;