Skip to content

Commit 1ffebe9

Browse files
author
SAY-5
committed
fix(csharp): correct adventure name 'elodoria' -> 'eldoria' in Program help text
The help text printed when no adventure argument is supplied listed 'elodoria' as a valid name, but the switch case in the same file handles 'eldoria'. Users following the hint ended up in the default branch with 'Unknown option: elodoria'. Align the hint with the real case label. Closes #41. dotnet build succeeds with 0 warnings / 0 errors.
1 parent 3a6fb13 commit 1ffebe9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Solutions/CSharp/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ public static void Main(string[] args)
66
var adventure = args?.FirstOrDefault()?.ToLower();
77
if (string.IsNullOrWhiteSpace(adventure))
88
{
9-
Console.WriteLine("Please specify which logic to run: Sample names include: algora, chamberofechoes, elodoria, lumoria, mythos, mythos-test, stonevale, tempora.");
9+
Console.WriteLine("Please specify which logic to run: Sample names include: algora, chamberofechoes, eldoria, lumoria, mythos, mythos-test, stonevale, tempora.");
1010
adventure = Console.ReadLine();
1111
}
1212

0 commit comments

Comments
 (0)