From 3abcc5987493bceff092b78f95434a85387a1482 Mon Sep 17 00:00:00 2001 From: tyow Date: Fri, 30 Jan 2026 14:13:36 -0500 Subject: [PATCH] adjust wording --- packages/xen/xen.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/xen/xen.mjs b/packages/xen/xen.mjs index 6ede42616..908d7b12d 100644 --- a/packages/xen/xen.mjs +++ b/packages/xen/xen.mjs @@ -53,7 +53,7 @@ export const xen = register('xen', function (scaleNameOrRatios, pat) { haps = haps.map(hap=>{ let hVal = hap.value const isObject = typeof hVal === 'object'; - // If hVal is a pure value, place it on `n` so that we interpret it as a scale degree + // If hVal is a pure value, place it on `n` so that we interpret it as an edoStep hVal = isObject ? hVal : { n: hVal }; const { n, value, ...otherValues } = hVal; const scale = getXenScale(scaleNameOrRatios);