diff options
author | rekado <rekado@elephly.net> | 2016-09-28 22:49:53 +0200 |
---|---|---|
committer | rekado <rekado@elephly.net> | 2016-09-28 22:49:53 +0200 |
commit | cdd6bafe03ffe081004cf1b897804fa8b9f1e482 (patch) | |
tree | f7b114c5b10417c4270722ac3afcabeda356093c | |
parent | e1923c04a61926cb570e7d4f63e321e7eff3b74f (diff) |
Fix indentation.
-rw-r--r-- | scales/fretboard.scm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scales/fretboard.scm b/scales/fretboard.scm index 97bb1f5..123bc35 100644 --- a/scales/fretboard.scm +++ b/scales/fretboard.scm @@ -64,10 +64,10 @@ are indicated for as many FRETS as specified." (let ((note (fret-note fret))) (format #t "-~3,,,'-,a-|" (if note - (if (zero? (scale-note-offset note)) - (string-upcase (symbol->string (scale-note-note note))) - (scale-note-note note)) - "-")))) + (if (zero? (scale-note-offset note)) + (string-upcase (symbol->string (scale-note-note note))) + (scale-note-note note)) + "-")))) (define (print-frets frets) (display "|") |