Skip to content

Commit

Permalink
Fix E7 chord (#121)
Browse files Browse the repository at this point in the history
It looks like there is a mistake in the chordbook for the chord E7.

The chord is currently the same as the E chord.

I fixed the notes following the first way to play it in as in this
article :
https://www.fender.com/articles/chords/learn-how-to-play-e7-guitar-chord
  • Loading branch information
paul-louyot authored Nov 19, 2023
1 parent 077d95f commit c4ee1ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/chordbook.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ addGuitarChord(parseChord("Dsus4"), "m1 m2 n4,2 n5,3 n6,3");

addGuitarChord(parseChord("E"), "n2,2 n3,2 n4,1");
addGuitarChord(parseChord("Em"), "n2,2 n3,2");
addGuitarChord(parseChord("E7"), "n2,2 n3,2 n4,1");
addGuitarChord(parseChord("E7"), "n2,2 n4,1");
addGuitarChord(parseChord("Em7"), "n2,2");
addGuitarChord(parseChord("Em7"), "n2,2 n3,2 n5,3");

Expand Down

0 comments on commit c4ee1ed

Please sign in to comment.