From 6e4aa39e9d9d77d6fbb86bc7a6f4586ca07faaf1 Mon Sep 17 00:00:00 2001 From: Frederic Junod Date: Tue, 10 Jan 2017 08:49:11 +0100 Subject: [PATCH] Add curly braces in type annotation --- src/ol/view.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ol/view.js b/src/ol/view.js index 32fb696f90..15cdd7e907 100644 --- a/src/ol/view.js +++ b/src/ol/view.js @@ -217,7 +217,7 @@ ol.View.prototype.animate = function(var_args) { } var series = []; for (var i = 0; i < animationCount; ++i) { - var options = /** @type olx.AnimationOptions */ (arguments[i]); + var options = /** @type {olx.AnimationOptions} */ (arguments[i]); var animation = /** @type {ol.ViewAnimation} */ ({ start: start,