From f08725ba3fa5f966794278fac99ad9725c647306 Mon Sep 17 00:00:00 2001 From: Shawn Presser Date: Sat, 1 Feb 2025 03:02:18 -0600 Subject: [PATCH] Fix broken README.md rendering There was an extra backtick, which caused the following JS block to incorrectly be merged with that JS block --- packages/scale/README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/scale/README.md b/packages/scale/README.md index 76f3d208..aa20791f 100644 --- a/packages/scale/README.md +++ b/packages/scale/README.md @@ -72,14 +72,13 @@ Scale.detect(["C", "D", "E", "F", "G", "A", "B"], { tonic: "A" }); You can ask just the exact match: -````js +```js Scale.detect(["D", "E", "F#", "A", "B"], { match: "exact" }); // => ["D major pentatonic"] Scale.detect(["D", "E", "F#", "A", "B"], { match: "exact", tonic: "B" }); // => ["B major pentatonic"] ``` - ### `Scale.scaleChords(scale: string) => string[]` Get all chords that fits a given scale: