diff options
author | Joris | 2024-04-05 20:44:08 +0200 |
---|---|---|
committer | Joris | 2024-04-05 20:44:08 +0200 |
commit | 57bf8e693727e63e7acc1aa2780c19948dc8de06 (patch) | |
tree | 087d302f194c99e02e2cacd2d1a7abf11329c9e7 /songs/bob-marley | |
parent | aae7e39dc5b5e6c61247fdb5b2b36a2e5a9bcaaa (diff) |
Represent chords with clearer ascii characters
Diffstat (limited to 'songs/bob-marley')
-rw-r--r-- | songs/bob-marley/no-woman-no-cry.lisp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/songs/bob-marley/no-woman-no-cry.lisp b/songs/bob-marley/no-woman-no-cry.lisp index 80bb213..f696abf 100644 --- a/songs/bob-marley/no-woman-no-cry.lisp +++ b/songs/bob-marley/no-woman-no-cry.lisp @@ -5,21 +5,21 @@ (chords (intro - ((C G) (("Am" 1.5) (F 0.5 2))) + ((C G) (("Aₘ" 1.5) (F 0.5 2))) (((C 2) (F 1.5) (C 0.5)) (C G))) (chorus :repeat 2 - ((C G) (("Am" 1.5) (F 0.5 2))) + ((C G) (("Aₘ" 1.5) (F 0.5 2))) (((C 2) (F 1.5) (C 0.5)) (C G))) (verse :repeat 4 - ((C G) (("Am" 1.5) (F 0.5 2)))) + ((C G) (("Aₘ" 1.5) (F 0.5 2)))) (bridge :repeat 4 - ((C G) ("Am" F)))) + ((C G) ("Aₘ" F)))) (lyrics (intro) |