Skip to content

Commit

Permalink
missed an indent on a ternary op woops
Browse files Browse the repository at this point in the history
  • Loading branch information
benjaminiserman committed Nov 29, 2021
1 parent 9fb5447 commit 38a351b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,8 @@ private static void PrintNotes(int key, Scale scale, bool? isSharp)
false => _flatNotes[index],
null =>
_sharpNotes[index] == _flatNotes[index]
? _sharpNotes[index]
: $"{_sharpNotes[index]}/{_flatNotes[index]}",
? _sharpNotes[index]
: $"{_sharpNotes[index]}/{_flatNotes[index]}",
});
}

Expand Down

0 comments on commit 38a351b

Please sign in to comment.