diff --git a/src/core/lombok/SneakyThrows.java b/src/core/lombok/SneakyThrows.java index 2a8009a3b..41b8f5169 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. *