From c67aa37590746c27ba6ae043679ebb7bf184ed22 Mon Sep 17 00:00:00 2001 From: Laura Hausmann Date: Thu, 1 Dec 2022 16:40:00 +0100 Subject: [PATCH] Fix AOORE call parameters --- Backend/Utils.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Backend/Utils.cs b/Backend/Utils.cs index c81fc2b..194f8fc 100644 --- a/Backend/Utils.cs +++ b/Backend/Utils.cs @@ -15,7 +15,7 @@ public static class Utils { // Works up to 79, doubt i'll have >=80 minute read time blog posts public static string a_an(int number) { if (number >= 80) - throw new ArgumentOutOfRangeException(); + throw new ArgumentOutOfRangeException(nameof(number)); return number switch { 8 => "an",