diff options
-rw-r--r-- | website/features/Delegate.html | 4 | ||||
-rw-r--r-- | website/features/index.html | 4 | ||||
-rw-r--r-- | website/features/val.html | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/website/features/Delegate.html b/website/features/Delegate.html index 99f8a559..7825359f 100644 --- a/website/features/Delegate.html +++ b/website/features/Delegate.html @@ -11,7 +11,7 @@ <div class="meat"> <div class="header"><a href="../index.html">Project Lombok</a></div> <h1>@Delegate</h1> - <div class="byline">Don't lose your composition</div> + <div class="byline">Don't lose your composition.</div> <div class="overview"> <h3>Overview</h3> <p> @@ -52,7 +52,7 @@ <div class="overview"> <h3>Small print</h3><div class="smallprint"> <p> - When passing classes to the annotation's <code>types</code> or <code>excludes<code> parameter, you cannot include generics. + When passing classes to the annotation's <code>types</code> or <code>excludes</code> parameter, you cannot include generics. This is a limitation of java. Use private inner interfaces or classes that extend the intended type including the generics parameter to work around this problem. </p> diff --git a/website/features/index.html b/website/features/index.html index e9a2255b..4433dc2c 100644 --- a/website/features/index.html +++ b/website/features/index.html @@ -35,9 +35,9 @@ <dt><a href="Log.html"><code>@Log</code></a></dt> <dd>Captain's Log, stardate 24435.7: "What was that line again?"</dd> <dt><a href="val.html"><code>val</code></a></dt> - <dd>Finally! hassle-free final local variables.</dd> + <dd>Finally! Hassle-free final local variables.</dd> <dt><a href="Delegate.html"><code>@Delegate</code></a></dt> - <dd>Don't lose your composition</dd> + <dd>Don't lose your composition.</dd> <dt><a href="onX.html"><code>onMethod=,onParam=,onConstructor=</code></a></dt> <dd>Annotate this! Add you favorite annotation to methods generated by lombok.</dd> </dl> diff --git a/website/features/val.html b/website/features/val.html index f3e86447..05930c2d 100644 --- a/website/features/val.html +++ b/website/features/val.html @@ -11,7 +11,7 @@ <div class="meat"> <div class="header"><a href="../index.html">Project Lombok</a></div> <h1>val</h1> - <div class="byline">Finally! hassle-free final local variables.</div> + <div class="byline">Finally! Hassle-free final local variables.</div> <div class="overview"> <h3>Overview</h3> <p> |