From 26fd753a49368ef26c69fb35abd3524f1e341c93 Mon Sep 17 00:00:00 2001 From: nicfv Date: Mon, 15 Apr 2024 09:18:20 -0700 Subject: [PATCH] Doc fix --- dimensional/CHANGELOG.md | 1 + dimensional/src/unit.ts | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/dimensional/CHANGELOG.md b/dimensional/CHANGELOG.md index 4651b4a4..4244d460 100644 --- a/dimensional/CHANGELOG.md +++ b/dimensional/CHANGELOG.md @@ -4,6 +4,7 @@ - Shorthand for "simple" units, attributes, and dimensions - Rename `Measure` to `Attribute` (now the **QUAD** acronym works!) +- Minor documentation fix in `Unit` ## 0.3.0 diff --git a/dimensional/src/unit.ts b/dimensional/src/unit.ts index 36c04be7..9215dc8d 100644 --- a/dimensional/src/unit.ts +++ b/dimensional/src/unit.ts @@ -44,7 +44,7 @@ export namespace Unit { */ public readonly scale: number; /** - * The physical base dimensions of this unit. + * The physical attribute measured by this unit. */ public readonly attribute: Attribute.Attribute; constructor(exponents: Exponents, attrOverride?: Attribute.Attribute) {