aboutsummaryrefslogtreecommitdiff
path: root/website/templates
diff options
context:
space:
mode:
authorSubmohr <zippoccoto@gmail.com>2022-04-01 14:54:22 -0500
committerGitHub <noreply@github.com>2022-04-01 14:54:22 -0500
commitc489a99bdd2e64f16685189e4c310bca64e667af (patch)
tree07e203a073ce15f5bd22773839ac6a3a9c6712dc /website/templates
parente1b99751850bc47dd17e983b8f7255fd9b741aca (diff)
downloadlombok-c489a99bdd2e64f16685189e4c310bca64e667af.tar.gz
lombok-c489a99bdd2e64f16685189e4c310bca64e667af.tar.bz2
lombok-c489a99bdd2e64f16685189e4c310bca64e667af.zip
Fix typo in StandardException documentation
Closed parenthesis in the StandardException page of the website.
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>