Skip to content

Commit 1384244

Browse files
authored
Merge pull request #3698 from stevebosman/fix-sneaky-throws-doc
Minor correction to SneakyThrows javadoc
2 parents d90ec73 + 48ad2ba commit 1384244

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/core/lombok/SneakyThrows.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@
2727
import java.lang.annotation.Target;
2828

2929
/**
30-
* @SneakyThrow will avoid javac's insistence that you either catch or throw onward any checked exceptions that
30+
* @SneakyThrows will avoid javac's insistence that you either catch or throw onward any checked exceptions that
3131
* statements in your method body declare they generate.
3232
* <p>
33-
* &#64;SneakyThrow does not silently swallow, wrap into RuntimeException, or otherwise modify any exceptions of the listed
33+
* &#64;SneakyThrows does not silently swallow, wrap into RuntimeException, or otherwise modify any exceptions of the listed
3434
* checked exception types. The JVM does not check for the consistency of the checked exception system; javac does,
3535
* and this annotation lets you opt out of its mechanism.
3636
* <p>

0 commit comments

Comments
 (0)