From 087090c07d5043c2fd87ae94447eea1f91d718df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergi=20=C3=81vila?= Date: Mon, 14 Feb 2022 12:46:18 +0100 Subject: [PATCH] Fix wrong array generic type --- src/ol/style/literal.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ol/style/literal.js b/src/ol/style/literal.js index 6f73f338aa..6d42898ca8 100644 --- a/src/ol/style/literal.js +++ b/src/ol/style/literal.js @@ -29,7 +29,7 @@ export const SymbolType = { /** * @typedef {Object} LiteralSymbolStyle - * @property {ExpressionValue|Array} size Size, mandatory. + * @property {ExpressionValue|Array} size Size, mandatory. * @property {SymbolType} symbolType Symbol type to use, either a regular shape or an image. * @property {string} [src] Path to the image to be used for the symbol. Only required with `symbolType: 'image'`. * @property {string} [crossOrigin='anonymous'] The `crossOrigin` attribute for loading `src`.