From a22f7fb215b8e19dc1d09f5c453dc8727940ea71 Mon Sep 17 00:00:00 2001 From: Paul Reilly Date: Fri, 9 Jun 2023 21:18:29 -0500 Subject: [PATCH] Super edited with Notepad++ --- .../src/main/java/me/totalfreedom/provider/ContextProvider.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Patchwork/src/main/java/me/totalfreedom/provider/ContextProvider.java b/Patchwork/src/main/java/me/totalfreedom/provider/ContextProvider.java index 1bb01f7..680219d 100644 --- a/Patchwork/src/main/java/me/totalfreedom/provider/ContextProvider.java +++ b/Patchwork/src/main/java/me/totalfreedom/provider/ContextProvider.java @@ -36,7 +36,7 @@ public class ContextProvider private @Nullable Boolean toBoolean(final String string) { - // Previously we used Boolean#parseBoolean, but that will always return a value and does not throwl + // Previously we used Boolean#parseBoolean, but that will always return a value and does not throw // an exception. This means that if the string is not "true" or "false", it will return false. if (string.equalsIgnoreCase("true")) return true; if (string.equalsIgnoreCase("false")) return false;