diff options
author | Jerry James <loganjerry@gmail.com> | 2020-09-14 08:23:26 -0600 |
---|---|---|
committer | Jerry James <loganjerry@gmail.com> | 2020-09-14 08:25:00 -0600 |
commit | f7f7656f81f9a84f92920492ab619accfaeb1ccf (patch) | |
tree | 5aac59fa5762fc333fb116f100b2f420ad974e83 /bridge | |
parent | a6b0448a0ec9ce353d0e95d90759037a5425f304 (diff) | |
download | aspectj-f7f7656f81f9a84f92920492ab619accfaeb1ccf.tar.gz aspectj-f7f7656f81f9a84f92920492ab619accfaeb1ccf.zip |
Fix incorrect HTML entities in javadoc comments
Diffstat (limited to 'bridge')
-rw-r--r-- | bridge/src/main/java/org/aspectj/bridge/SourceLocation.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bridge/src/main/java/org/aspectj/bridge/SourceLocation.java b/bridge/src/main/java/org/aspectj/bridge/SourceLocation.java index 739dd52ab..c883669f6 100644 --- a/bridge/src/main/java/org/aspectj/bridge/SourceLocation.java +++ b/bridge/src/main/java/org/aspectj/bridge/SourceLocation.java @@ -18,7 +18,7 @@ import java.io.File; import org.aspectj.util.LangUtil; /** - * Immutable source location. This guarantees that the source file is not null and that the numeric values are positive and line <= + * Immutable source location. This guarantees that the source file is not null and that the numeric values are positive and line ≤ * endLine. * * @see org.aspectj.lang.reflect.SourceLocation @@ -77,7 +77,7 @@ public class SourceLocation implements ISourceLocation { /** * @param file File of the source; if null, use ISourceLocation.NO_FILE, not null * @param line int starting line of the location - positive number - * @param endLine int ending line of the location - <= starting line + * @param endLine int ending line of the location - ≤ starting line * @param column int character position of starting location - positive number */ public SourceLocation(File file, int line, int endLine, int column) { |