Skip to content

Commit 224b720

Browse files
committed
fix incorrect step size
1 parent 90682ed commit 224b720

File tree

1 file changed

+1
-1
lines changed
  • src/main/java/com/sellist/flashcards/constants

1 file changed

+1
-1
lines changed

src/main/java/com/sellist/flashcards/constants/Steps.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ public class Steps {
5353
public static final Step DIMINISHED_FIFTH = new Step("Diminished Fifth", "d5", 6, -1,4);
5454
public static final Step AUGMENTED_FIFTH = new Step("Augmented Fifth", "A5", 8, 1,4);
5555
public static final Step DIMINISHED_SIXTH = new Step("Diminished Sixth", "d6", 7, -2,5);
56-
public static final Step AUGMENTED_SIXTH = new Step("Augmented Sixth", "A6", 9, 1,5);
56+
public static final Step AUGMENTED_SIXTH = new Step("Augmented Sixth", "A6", 10, 1,5);
5757
public static final Step DIMINISHED_SEVENTH = new Step("Diminished Seventh", "d7", 9, -2,6);
5858
public static final Step AUGMENTED_SEVENTH = new Step("Augmented Seventh", "A7", 12, 1,6);
5959
public static final Step DIMINISHED_OCTAVE = new Step("Diminished Octave", "d8", 11, -1,7);

0 commit comments

Comments
 (0)