aboutsummaryrefslogtreecommitdiff
path: root/website/templates
diff options
context:
space:
mode:
authorReinier Zwitserloot <r.zwitserloot@projectlombok.org>2022-04-02 06:24:09 +0200
committerGitHub <noreply@github.com>2022-04-02 06:24:09 +0200
commit578e4b8aae43e8f2df30fb2939de49243880f15a (patch)
tree7549907f58dfd4e7f4dc9571a95d5bdecef00e83 /website/templates
parent71fcc0a60b5da50e5dd0feee3b3db8bf45327fea (diff)
parentc489a99bdd2e64f16685189e4c310bca64e667af (diff)
downloadlombok-578e4b8aae43e8f2df30fb2939de49243880f15a.tar.gz
lombok-578e4b8aae43e8f2df30fb2939de49243880f15a.tar.bz2
lombok-578e4b8aae43e8f2df30fb2939de49243880f15a.zip
Merge pull request #3164 from Submohr/patch-1
Fix typo in StandardException documentation
Diffstat (limited to 'website/templates')
-rw-r--r--website/templates/features/experimental/StandardException.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/website/templates/features/experimental/StandardException.html b/website/templates/features/experimental/StandardException.html
index c7fc40fe..fa4c704d 100644
--- a/website/templates/features/experimental/StandardException.html
+++ b/website/templates/features/experimental/StandardException.html
@@ -10,7 +10,7 @@
<@f.overview>
<p>
- Put this annotation on your own exception types (new classes that <code>extends Exception</code> or anything else that inherits from <code>Throwable</code>. This annotation will then generate up to 4 constructors:
+ Put this annotation on your own exception types (new classes that <code>extends Exception</code> or anything else that inherits from <code>Throwable</code>). This annotation will then generate up to 4 constructors:
</p><ul>
<li>A no-args constructor (<code>MyException()</code>), representing no message, and no cause.</li>
<li>A message-only constructor (<code>MyException(String message)</code>), representing the provided message, and no cause.</li>