@@ -396,7 +396,7 @@ def dominant_flat_ninth(note):
396396 """Build a dominant flat ninth chord on note.
397397
398398 Example:
399- >>> dominant_ninth ('C')
399+ >>> dominant_flat_ninth ('C')
400400 ['C', 'E', 'G', 'Bb', 'Db']
401401 """
402402 res = dominant_ninth (note )
@@ -408,7 +408,7 @@ def dominant_sharp_ninth(note):
408408 """Build a dominant sharp ninth chord on note.
409409
410410 Example:
411- >>> dominant_ninth ('C')
411+ >>> dominant_sharp_ninth ('C')
412412 ['C', 'E', 'G', 'Bb', 'D#']
413413 """
414414 res = dominant_ninth (note )
@@ -953,11 +953,11 @@ def determine_triad(triad, shorthand=False, no_inversions=False, placeholder=Non
953953
954954 Examples:
955955 >>> determine_triad(['A', 'C', 'E'])
956- 'A minor triad'
956+ [ 'A minor triad', 'C major sixth, second inversion']
957957 >>> determine_triad(['C', 'E', 'A'])
958- ' A minor triad, first inversion'
958+ ['C major sixth', ' A minor triad, first inversion']
959959 >>> determine_triad(['A', 'C', 'E'], True)
960- 'Am'
960+ [ 'Am', 'CM6']
961961 """
962962 if len (triad ) != 3 :
963963 # warning: raise exception: not a triad
@@ -1031,7 +1031,7 @@ def determine_seventh(
10311031
10321032 Example:
10331033 >>> determine_seventh(['C', 'E', 'G', 'B'])
1034- ['C major seventh']
1034+ ['C major seventh', 'Em|CM' ]
10351035 """
10361036 if len (seventh ) != 4 :
10371037 # warning raise exception: seventh chord is not a seventh chord
0 commit comments