From c5c6500ae067f897b92da80e40483b725bf27f39 Mon Sep 17 00:00:00 2001 From: Colin Stynes Date: Thu, 21 Mar 2024 16:24:30 -0400 Subject: [PATCH] fixed doc comment --- .../src/lib/data-layer/data-layer-color.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/ngx-charts-on-fhir/src/lib/data-layer/data-layer-color.service.ts b/libs/ngx-charts-on-fhir/src/lib/data-layer/data-layer-color.service.ts index d604505d..62fc1ac6 100644 --- a/libs/ngx-charts-on-fhir/src/lib/data-layer/data-layer-color.service.ts +++ b/libs/ngx-charts-on-fhir/src/lib/data-layer/data-layer-color.service.ts @@ -31,7 +31,7 @@ export class DataLayerColorService { private lightPalette = this.palette.map((c) => tinycolor(c).brighten(20).toString()); - /** Chooses colors for all of the datasets and annotations in the Layer by cycling through the palette */ + /** Chooses colors for all of the datasets and annotations in the Layer */ chooseColorsFromPalette(layer: DataLayer): void { for (let dataset of layer.datasets) { if (!this.hasColor(dataset)) {