From 44b19cb2e3eb1a3c3e4dd3298e75c17d174ab887 Mon Sep 17 00:00:00 2001 From: Frederic Junod Date: Wed, 4 Apr 2018 16:50:49 +0200 Subject: [PATCH] Module type for ol.format.TokenType --- 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 453741bf7f..bb3dbd14dc 100644 --- a/src/ol/format/WKT.js +++ b/src/ol/format/WKT.js @@ -246,7 +246,7 @@ Parser.prototype.consume_ = function() { /** * Tests if the given type matches the type of the current token. - * @param {ol.format.TokenType} type Token type. + * @param {module:ol/format/WKT~TokenType} type Token type. * @return {boolean} Whether the token matches the given type. */ Parser.prototype.isTokenType = function(type) { @@ -257,7 +257,7 @@ Parser.prototype.isTokenType = function(type) { /** * If the given type matches the current token, consume it. - * @param {ol.format.TokenType} type Token type. + * @param {module:ol/format/WKT~TokenType} type Token type. * @return {boolean} Whether the token matches the given type. */ Parser.prototype.match = function(type) {