From 71a09714ed32fe05ee858dd0d4cdcee2ca246908 Mon Sep 17 00:00:00 2001 From: yihangwu539-png Date: Sun, 26 Apr 2026 20:33:41 +0800 Subject: [PATCH] Fix typo: 'elodoria' -> 'eldoria' in Program.cs help text The help text listed 'elodoria' as a valid adventure name but the switch case handles 'eldoria'. Users following the prompt would get an error. Closes #41 --- Solutions/CSharp/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Solutions/CSharp/Program.cs b/Solutions/CSharp/Program.cs index 646ecee..d8312f5 100644 --- a/Solutions/CSharp/Program.cs +++ b/Solutions/CSharp/Program.cs @@ -6,7 +6,7 @@ public static void Main(string[] args) var adventure = args?.FirstOrDefault()?.ToLower(); if (string.IsNullOrWhiteSpace(adventure)) { - Console.WriteLine("Please specify which logic to run: Sample names include: algora, chamberofechoes, elodoria, lumoria, mythos, mythos-test, stonevale, tempora."); + Console.WriteLine("Please specify which logic to run: Sample names include: algora, chamberofechoes, eldoria, lumoria, mythos, mythos-test, stonevale, tempora."); adventure = Console.ReadLine(); }