Merge pull request #8833 from fredj/misc

Fix wrong filename in type annotation
This commit is contained in:
Frédéric Junod
2018-10-18 08:27:12 +02:00
committed by GitHub

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