]> git.donarmstrong.com Git - lilypond.git/blobdiff - scripts/abc2ly.py
Spelling fixes in comments and documentation
[lilypond.git] / scripts / abc2ly.py
index ac99b292b5b23fa8aa19ad05757ecec1739c9b62..3a0aeaedabe7776a610acbc087b358a80bab3e90 100644 (file)
@@ -695,7 +695,7 @@ def try_parse_header_line (ln, state):
         if g == 'K': # KEY
             a = check_clef(a)
             if a:
-                m = re.match ('^([^ \t]*) *([^ ]*)( *)(.*)$', a) # seperate clef info
+                m = re.match ('^([^ \t]*) *([^ ]*)( *)(.*)$', a) # separate clef info
                 if m:
                     # there may or may not be a space
                     # between the key letter and the mode
@@ -929,7 +929,7 @@ def try_parse_articulation (str, state):
 
 
 
-    # s7m2 input doesnt care about spaces
+    # s7m2 input doesn't care about spaces
     if re.match('[ \t]*\(', str):
         str = str.lstrip ()