From b9999dfb357782486280391385828af748f1a4b1 Mon Sep 17 00:00:00 2001 From: ahocevar Date: Sun, 18 Mar 2018 15:08:40 +0100 Subject: [PATCH] Fix type typos --- src/ol/interaction/DragBox.js | 2 +- src/ol/interaction/DragRotateAndZoom.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ol/interaction/DragBox.js b/src/ol/interaction/DragBox.js index 55f20514ee..e1588ceb37 100644 --- a/src/ol/interaction/DragBox.js +++ b/src/ol/interaction/DragBox.js @@ -106,7 +106,7 @@ inherits(DragBoxEvent, Event); * This interaction is only supported for mouse devices. * * @constructor - * @extends {module:ol/interaction/Pointer} + * @extends {module:ol/interaction/Pointer~Pointer} * @fires module:ol/interaction/DragBox~DragBoxEvent * @param {module:ol/interaction/DragBox~Options=} opt_options Options. * @api diff --git a/src/ol/interaction/DragRotateAndZoom.js b/src/ol/interaction/DragRotateAndZoom.js index 0e30540b69..6bce4eda34 100644 --- a/src/ol/interaction/DragRotateAndZoom.js +++ b/src/ol/interaction/DragRotateAndZoom.js @@ -15,7 +15,7 @@ import PointerInteraction from '../interaction/Pointer.js'; * takes an {@link module:ol/MapBrowserEvent~MapBrowserEvent} and returns a * boolean to indicate whether that event should be handled. * Default is {@link module:ol/events/condition~shiftKeyOnly}. - * @property {number} [dura00tion=4] Animation duration in milliseconds. + * @property {number} [duration=400] Animation duration in milliseconds. */