Browse Source

fixes typos in javadoc comments

tags/rel_3_21_0_ga^0
chibash 7 years ago
parent
commit
03f85a3393

+ 1
- 1
Readme.html View File

@@ -281,7 +281,7 @@ see javassist.Dump.

<h2>Changes</h2>

<p>-version 3.21 on October 3, 2016
<p>-version 3.21 on October 4, 2016
<ul>
<li>JIRA JASSIST-244, 245, 248, 250, 255, 256, 259, 262.
<li><code>javassist.tools.Callback</code> was modified to be Java 1.4 compatible.

+ 2
- 2
src/main/javassist/CtField.java View File

@@ -379,8 +379,8 @@ public class CtField extends CtMember {
* this field. They have to be explicitly updated. For example,
* if some method contains an expression {@code t.value} and the type
* of the variable {@code t} is changed by {@link #setType(CtClass)}
* from {@code int} to {@code double}, then {@ t.value} has to be modified
* since the bytecode of {@code t.value} contains the type information.
* from {@code int} to {@code double}, then {@code t.value} has to be modified
* as well since the bytecode of {@code t.value} contains the type information.
* </p>
*
* @see CodeConverter

+ 2
- 2
src/main/javassist/bytecode/ClassFile.java View File

@@ -763,8 +763,8 @@ public final class ClassFile {
* returns null if the specified attributed is not found.
*
* <p>An attribute name can be obtained by, for example,
* {@link AnnotationsAttribute#visibleTab} or
* {@link AnnotationsAttribute#invisibleTab}.
* {@link AnnotationsAttribute#visibleTag} or
* {@link AnnotationsAttribute#invisibleTag}.
* </p>
*
* @param name attribute name

+ 2
- 2
src/main/javassist/bytecode/FieldInfo.java View File

@@ -232,8 +232,8 @@ public final class FieldInfo {
* It returns null if the specified attribute is not found.
*
* <p>An attribute name can be obtained by, for example,
* {@link AnnotationsAttribute#visibleTab} or
* {@link AnnotationsAttribute#invisibleTab}.
* {@link AnnotationsAttribute#visibleTag} or
* {@link AnnotationsAttribute#invisibleTag}.
* </p>
*
* @param name attribute name

+ 2
- 2
src/main/javassist/bytecode/MethodInfo.java View File

@@ -316,8 +316,8 @@ public class MethodInfo {
* method returns null.
*
* <p>An attribute name can be obtained by, for example,
* {@link AnnotationsAttribute#visibleTab} or
* {@link AnnotationsAttribute#invisibleTab}.
* {@link AnnotationsAttribute#visibleTag} or
* {@link AnnotationsAttribute#invisibleTag}.
* </p>
*
* @param name attribute name

Loading…
Cancel
Save