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 /ajdoc | |
parent | a6b0448a0ec9ce353d0e95d90759037a5425f304 (diff) | |
download | aspectj-f7f7656f81f9a84f92920492ab619accfaeb1ccf.tar.gz aspectj-f7f7656f81f9a84f92920492ab619accfaeb1ccf.zip |
Fix incorrect HTML entities in javadoc comments
Diffstat (limited to 'ajdoc')
-rw-r--r-- | ajdoc/src/main/java/org/aspectj/tools/ajdoc/Main.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ajdoc/src/main/java/org/aspectj/tools/ajdoc/Main.java b/ajdoc/src/main/java/org/aspectj/tools/ajdoc/Main.java index e65c8901f..548f87f34 100644 --- a/ajdoc/src/main/java/org/aspectj/tools/ajdoc/Main.java +++ b/ajdoc/src/main/java/org/aspectj/tools/ajdoc/Main.java @@ -794,7 +794,7 @@ public class Main implements Config { } /** - * Sets the output working dir to be <fullyQualifiedOutputDir>\ajdocworkingdir Useful in testing to redirect the ajdocworkingdir + * Sets the output working dir to be <fullyQualifiedOutputDir>\ajdocworkingdir. Useful in testing to redirect the ajdocworkingdir * to the sandbox */ public static void setOutputWorkingDir(String fullyQulifiedOutputDir) { @@ -806,7 +806,7 @@ public class Main implements Config { } /** - * Resets the output working dir to be the default which is <the current directory>\ajdocworkingdir + * Resets the output working dir to be the default which is <the current directory>\ajdocworkingdir */ public static void resetOutputWorkingDir() { outputWorkingDir = Config.WORKING_DIR; |