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: