Fix typos in documentation

This commit is contained in:
Michal Kordas 2014-12-20 14:12:02 +01:00 committed by Roman Ivanov
parent 4297ca50a9
commit b6daa88c28
3 changed files with 7 additions and 7 deletions

View File

@ -444,19 +444,19 @@ public String getNameIfPresent() { ... }
</tr>
<tr>
<td>allowSamelineMultipleAnnotations</td>
<td>To allow annotation to be located on the same line as taret element.</td>
<td>To allow annotation to be located on the same line as target element.</td>
<td><a href="property_types.html#boolean">boolean</a></td>
<td><code>false</code></td>
</tr>
<tr>
<td>allowSamelineSingleParameterlessAnnotation</td>
<td>To allow single prameterless annotation to be located on the same line as taret element.</td>
<td>To allow single prameterless annotation to be located on the same line as target element.</td>
<td><a href="property_types.html#boolean">boolean</a></td>
<td><code>true</code></td>
</tr>
<tr>
<td>allowSamelineParametrizedAnnotation</td>
<td>To allow prameterized annotation to be located on the same line as taret element.</td>
<td>To allow parametrized annotation to be located on the same line as target element.</td>
<td><a href="property_types.html#boolean">boolean</a></td>
<td><code>false</code></td>
</tr>
@ -481,7 +481,7 @@ public String getNameIfPresent() { ... }
&lt;/module&gt;
</source>
<p>
Example to allow multiple parameterized annotations on the same line
Example to allow multiple parametrized annotations on the same line
</p>
<source>
@SuppressWarnings("deprecation") @Mock DataLoader loader;

View File

@ -1369,7 +1369,7 @@
src="images/ok_blue.png"
alt="" />
<a href="config_javadoc.html#JavadocMethod">JavadocMethod</a>
<br/> Overrides are checked by presense of "@Override" annotation on method.
<br/> Overrides are checked by presence of "@Override" annotation on method.
</td>
<td>
<a

View File

@ -16,7 +16,7 @@
<p>Bug fixes:</p>
<ul>
<li>
Generics in postfix expression before method referencec can be parsed now. Author: Ilja Dubinin <a href="https://github.com/checkstyle/checkstyle/issues/339">#339</a>
Generics in postfix expression before method references can be parsed now. Author: Ilja Dubinin <a href="https://github.com/checkstyle/checkstyle/issues/339">#339</a>
</li>
<li>
ArrayIndexOutOfBoundsException if Indentation and FileContentsFolder are enabled. Author: Ilja Dubinin. <a href="https://github.com/checkstyle/checkstyle/issues/92">#92</a>
@ -118,7 +118,7 @@
<ul>
<li>
<a href="https://google-styleguide.googlecode.com/svn-history/r130/trunk/javaguide.html">Google style</a>
is now covered to maxumum of Checkstyle ability. See detailed report <a href="google_style.html">here</a>. Authors: Max Vetrenko, Ruslan Diachenko, Roman Ivanov.
is now covered to maximum of Checkstyle ability. See detailed report <a href="google_style.html">here</a>. Authors: Max Vetrenko, Ruslan Diachenko, Roman Ivanov.
</li>
<li>
All binaries are now compiled by Jdk6. Jdk5 is not supported any more.