Fix wrong filename in type annotation

This commit is contained in:
Frederic Junod
2018-10-17 15:35:05 +02:00
parent 3d72490241
commit 1a0f398f1f

View File

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