diff options
author | chibash <chiba@javassist.org> | 2016-10-04 00:44:29 +0900 |
---|---|---|
committer | chibash <chiba@javassist.org> | 2016-10-04 00:44:29 +0900 |
commit | 03f85a33931c6090477926c15ce9bdfeb0c5ce28 (patch) | |
tree | a1952ba912a099828c14cc6717afd2ece968ba62 /src | |
parent | cefc23a1324e1085182bedbff7528b5c6870d1e8 (diff) | |
download | javassist-03f85a33931c6090477926c15ce9bdfeb0c5ce28.tar.gz javassist-03f85a33931c6090477926c15ce9bdfeb0c5ce28.zip |
fixes typos in javadoc commentsrel_3_21_0_ga
Diffstat (limited to 'src')
-rw-r--r-- | src/main/javassist/CtField.java | 4 | ||||
-rw-r--r-- | src/main/javassist/bytecode/ClassFile.java | 4 | ||||
-rw-r--r-- | src/main/javassist/bytecode/FieldInfo.java | 4 | ||||
-rw-r--r-- | src/main/javassist/bytecode/MethodInfo.java | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/src/main/javassist/CtField.java b/src/main/javassist/CtField.java index a4cb01e1..15a6d6f0 100644 --- a/src/main/javassist/CtField.java +++ b/src/main/javassist/CtField.java @@ -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 diff --git a/src/main/javassist/bytecode/ClassFile.java b/src/main/javassist/bytecode/ClassFile.java index f53ff149..5e0cba4d 100644 --- a/src/main/javassist/bytecode/ClassFile.java +++ b/src/main/javassist/bytecode/ClassFile.java @@ -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 diff --git a/src/main/javassist/bytecode/FieldInfo.java b/src/main/javassist/bytecode/FieldInfo.java index 0e2f76a5..926b8137 100644 --- a/src/main/javassist/bytecode/FieldInfo.java +++ b/src/main/javassist/bytecode/FieldInfo.java @@ -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 diff --git a/src/main/javassist/bytecode/MethodInfo.java b/src/main/javassist/bytecode/MethodInfo.java index 72642268..b42b7fe1 100644 --- a/src/main/javassist/bytecode/MethodInfo.java +++ b/src/main/javassist/bytecode/MethodInfo.java @@ -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 |