Skip to content

Commit 5e78aee

Browse files
authored
Fix broken scale/README.md (#459)
There was an extra backtick, which caused the following JS block to incorrectly be merged with that JS block
1 parent 215dbde commit 5e78aee

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

packages/scale/README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -72,14 +72,13 @@ Scale.detect(["C", "D", "E", "F", "G", "A", "B"], { tonic: "A" });
7272

7373
You can ask just the exact match:
7474

75-
````js
75+
```js
7676
Scale.detect(["D", "E", "F#", "A", "B"], { match: "exact" });
7777
// => ["D major pentatonic"]
7878
Scale.detect(["D", "E", "F#", "A", "B"], { match: "exact", tonic: "B" });
7979
// => ["B major pentatonic"]
8080
```
8181

82-
8382
### `Scale.scaleChords(scale: string) => string[]`
8483

8584
Get all chords that fits a given scale:

0 commit comments

Comments
 (0)