Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
stevehjohn committed Apr 8, 2024
1 parent 3f95293 commit cea5d6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Sudoku.Console/ConsoleApplication.cs
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ private static (int[] Puzzle, int Clues)[] LoadPuzzles(string filename)

private static (int[] Puzzle, int Clues)[] LoadPuzzlesInternal(string filename)
{
if (Path.GetExtension(filename).ToLower() == ".txt")
if (Path.GetExtension(filename).Equals(".txt", StringComparison.InvariantCultureIgnoreCase))
{
var data = File.ReadAllLines(filename);

Expand Down

0 comments on commit cea5d6c

Please sign in to comment.