From 3227a152eb4cb293e3c73e93fcfb99dae3a6e485 Mon Sep 17 00:00:00 2001 From: Stefan Weil Date: Sun, 28 Oct 2018 22:02:45 +0100 Subject: [PATCH] Add missing space between sentences in error message This fixes an issue reported by LGTM: This string appears to be missing a space after 'deprecated.'. Signed-off-by: Stefan Weil --- src/tilesource.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tilesource.js b/src/tilesource.js index c568e480..d85f5ee6 100644 --- a/src/tilesource.js +++ b/src/tilesource.js @@ -239,7 +239,7 @@ $.TileSource.prototype = { getTileSize: function( level ) { $.console.error( - "[TileSource.getTileSize] is deprecated." + + "[TileSource.getTileSize] is deprecated. " + "Use TileSource.getTileWidth() and TileSource.getTileHeight() instead" ); return this._tileWidth;