aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--interfaces/src/main/java/dotty/tools/dotc/interfaces/CompilerCallback.java2
-rw-r--r--interfaces/src/main/java/dotty/tools/dotc/interfaces/SimpleReporter.java2
2 files changed, 2 insertions, 2 deletions
diff --git a/interfaces/src/main/java/dotty/tools/dotc/interfaces/CompilerCallback.java b/interfaces/src/main/java/dotty/tools/dotc/interfaces/CompilerCallback.java
index 17d2f6bbd..25696f740 100644
--- a/interfaces/src/main/java/dotty/tools/dotc/interfaces/CompilerCallback.java
+++ b/interfaces/src/main/java/dotty/tools/dotc/interfaces/CompilerCallback.java
@@ -5,7 +5,7 @@ package dotty.tools.dotc.interfaces;
* You should implement this interface if you want to react to one or more of
* these events.
*
- * @see the method `process` of `dotty.tools.dotc.Driver` for more information.
+ * See the method `process` of `dotty.tools.dotc.Driver` for more information.
*/
public interface CompilerCallback {
/** Called when a class has been generated.
diff --git a/interfaces/src/main/java/dotty/tools/dotc/interfaces/SimpleReporter.java b/interfaces/src/main/java/dotty/tools/dotc/interfaces/SimpleReporter.java
index e52537096..872448583 100644
--- a/interfaces/src/main/java/dotty/tools/dotc/interfaces/SimpleReporter.java
+++ b/interfaces/src/main/java/dotty/tools/dotc/interfaces/SimpleReporter.java
@@ -5,7 +5,7 @@ package dotty.tools.dotc.interfaces;
* You should implement this interface if you want to handle the diagnostics
* returned by the compiler yourself.
*
- * @see the method `process` of `dotty.tools.dotc.Driver` for more information.
+ * See the method `process` of `dotty.tools.dotc.Driver` for more information.
*/
public interface SimpleReporter {
/** Report a diagnostic. */