From 1a0f398f1ff53fe7a533ee2c5fd6bb1672c4664d Mon Sep 17 00:00:00 2001 From: Frederic Junod Date: Wed, 17 Oct 2018 15:35:05 +0200 Subject: [PATCH] Fix wrong filename in type annotation --- src/ol/style/Fill.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ol/style/Fill.js b/src/ol/style/Fill.js index ad6e71bc7a..5b178d303f 100644 --- a/src/ol/style/Fill.js +++ b/src/ol/style/Fill.js @@ -79,7 +79,7 @@ class Fill { const color = this.color_; if (color) { if (Array.isArray(color) || typeof color == 'string') { - this.checksum_ = 'f' + asString(/** @type {import("../Color.js").Color|string} */ (color)); + this.checksum_ = 'f' + asString(/** @type {import("../color.js").Color|string} */ (color)); } else { this.checksum_ = getUid(this.color_); }