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_); }