Skip to content

Commit 1463558

Browse files
authored
Put notes in order for "m6*9" chord
All the other chords have their notes in ascending order, except this one. Should this be corrected?
1 parent 7180752 commit 1463558

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/server/ruby/lib/sonicpi/chord.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ class Chord < WrappingArray
4747
:maj9 => [0, 4, 7, 11, 14],
4848
"9sus4" => [0, 5, 7, 10, 14],
4949
"6*9" => [0, 4, 7, 9, 14],
50-
"m6*9" => [0, 3, 9, 7, 14],
50+
"m6*9" => [0, 3, 7, 9, 14],
5151
"7-9" => [0, 4, 7, 10, 13],
5252
"m7-9" => [0, 3, 7, 10, 13],
5353
"7-10" => [0, 4, 7, 10, 15],

0 commit comments

Comments
 (0)