From c9472d83d270919cc901d0381243e03828e5dbab Mon Sep 17 00:00:00 2001 From: Lumi Pakkanen Date: Mon, 12 Feb 2024 16:26:26 +0200 Subject: [PATCH] Fix a mistake in the documentation --- src/temperament.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/temperament.ts b/src/temperament.ts index 99b9b31..10604ce 100644 --- a/src/temperament.ts +++ b/src/temperament.ts @@ -136,7 +136,7 @@ abstract class BaseTemperament { /** * Obtain the period and generator of a rank 2 temperament. * @param options Options determining how the temperament is interpreted as a tuning and the units of the result. - * @returns A pair `[period, generator]` in cents (default) or the specified units. + * @returns An array of `[period, generators...]` in cents (default) or the specified units. */ periodGenerators(options?: TuningOptions): number[] { const mappingOptions = Object.assign({}, options || {});