From 9f7d98a8e90dddcfa94422465510bc95deadc53a Mon Sep 17 00:00:00 2001 From: Olivia Appleton Date: Sun, 4 Aug 2024 10:52:38 -0500 Subject: [PATCH] squash typo --- csharp/Euler/p0022.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/csharp/Euler/p0022.cs b/csharp/Euler/p0022.cs index 13a2e245..062f4d4b 100644 --- a/csharp/Euler/p0022.cs +++ b/csharp/Euler/p0022.cs @@ -27,7 +27,7 @@ public class p0022 : IEuler public object Answer() { int answer = 0; - string[] names = Utilities.getDataFileText("p0022_names.txt").Replace("\"", "").Split(','); + string[] names = Utilities.GetDataFileText("p0022_names.txt").Replace("\"", "").Split(','); names.Sort(); for (int i = 0; i < names.Length; i += 1) {