From 48ad2ba6c82cf1b4d852d174628c15ca5e634555 Mon Sep 17 00:00:00 2001 From: Steve Bosman Date: Tue, 25 Jun 2024 22:44:01 +0100 Subject: [PATCH] Minor correction to SneakyThrows javadoc --- src/core/lombok/SneakyThrows.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/lombok/SneakyThrows.java b/src/core/lombok/SneakyThrows.java index 2a8009a3b9..41b8f5169e 100644 --- a/src/core/lombok/SneakyThrows.java +++ b/src/core/lombok/SneakyThrows.java @@ -27,10 +27,10 @@ import java.lang.annotation.Target; /** - * @SneakyThrow will avoid javac's insistence that you either catch or throw onward any checked exceptions that + * @SneakyThrows will avoid javac's insistence that you either catch or throw onward any checked exceptions that * statements in your method body declare they generate. *

- * @SneakyThrow does not silently swallow, wrap into RuntimeException, or otherwise modify any exceptions of the listed + * @SneakyThrows does not silently swallow, wrap into RuntimeException, or otherwise modify any exceptions of the listed * checked exception types. The JVM does not check for the consistency of the checked exception system; javac does, * and this annotation lets you opt out of its mechanism. *