From 27c554cfd89b2f0fcfc92dbdc092a67b1e8bc2fc Mon Sep 17 00:00:00 2001 From: Charles Oliver Nutter Date: Thu, 19 Oct 2023 14:27:28 -0500 Subject: [PATCH] typo [skip ci] --- core/src/main/java/org/jruby/runtime/Helpers.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/org/jruby/runtime/Helpers.java b/core/src/main/java/org/jruby/runtime/Helpers.java index eb611bf6824..c836b06e930 100644 --- a/core/src/main/java/org/jruby/runtime/Helpers.java +++ b/core/src/main/java/org/jruby/runtime/Helpers.java @@ -236,7 +236,7 @@ public static boolean subtractionOverflowed(long original, long other, long resu * @return the resulting {@link Errno} value, or null if none could be determined. */ public static Errno errnoFromException(Throwable t) { - // FIXME: Error-message scrapingis gross and turns out to be fragile if the host system is localized jruby/jruby#5415 + // FIXME: Error-message scraping is gross and turns out to be fragile if the host system is localized jruby/jruby#5415 // Try specific exception types by rethrowing and catching. try {