From 8657e31b000866cd6094c76a4d42229fe6d30151 Mon Sep 17 00:00:00 2001 From: ahocevar Date: Sat, 12 May 2018 19:20:27 +0200 Subject: [PATCH] Fix a few doc comment typos --- src/ol/Map.js | 2 +- src/ol/PluggableMap.js | 2 +- src/ol/source/VectorTile.js | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ol/Map.js b/src/ol/Map.js index 99d5ab3577..a9b1e31f95 100644 --- a/src/ol/Map.js +++ b/src/ol/Map.js @@ -35,7 +35,7 @@ import CanvasVectorTileLayerRenderer from './renderer/canvas/VectorTileLayer.js' * target: 'map' * }); * - * The above snippet creates a map using a {@link module:ol/layer/Tile~Tile} to + * The above snippet creates a map using a {@link module:ol/layer/Tile} to * display {@link module:ol/source/OSM~OSM} OSM data and render it to a DOM * element with the id `map`. * diff --git a/src/ol/PluggableMap.js b/src/ol/PluggableMap.js index a510c66f1d..c6fa638b93 100644 --- a/src/ol/PluggableMap.js +++ b/src/ol/PluggableMap.js @@ -87,7 +87,7 @@ import {create as createTransform, apply as applyTransform} from './transform.js * @typedef {Object} MapOptions * @property {module:ol/Collection.|Array.} [controls] * Controls initially added to the map. If not specified, - * {@link module:ol/control~defaults} is used. + * {@link module:ol/control/util~defaults} is used. * @property {number} [pixelRatio=window.devicePixelRatio] The ratio between * physical pixels and device-independent pixels (dips) on the device. * @property {module:ol/Collection.|Array.} [interactions] diff --git a/src/ol/source/VectorTile.js b/src/ol/source/VectorTile.js index 0b4e66d8a0..8fbfea3c9b 100644 --- a/src/ol/source/VectorTile.js +++ b/src/ol/source/VectorTile.js @@ -59,7 +59,7 @@ import {createXYZ, extentFromProjection, createForProjection} from '../tilegrid. * with vector features from the server, it is not meant for feature editing. * Features are optimized for rendering, their geometries are clipped at or near * tile boundaries and simplified for a view resolution. See - * {@link module:ol/source/VectorSource} for vector sources that are suitable for feature + * {@link module:ol/source/Vector} for vector sources that are suitable for feature * editing. * * @constructor