aboutsummaryrefslogtreecommitdiff
path: root/interfaces
diff options
context:
space:
mode:
authorPaolo G. Giarrusso <p.giarrusso@gmail.com>2016-05-25 17:41:21 +0200
committerPaolo G. Giarrusso <p.giarrusso@gmail.com>2016-05-25 17:41:21 +0200
commitd06df38c5e48ae8c957c4b71844cb850dea3a6cb (patch)
tree2d74763d4b8892da139b7eac9977890d31b5741d /interfaces
parent6610658710ca4ca3565139e1d7ac466c6c88cc60 (diff)
downloaddotty-d06df38c5e48ae8c957c4b71844cb850dea3a6cb.tar.gz
dotty-d06df38c5e48ae8c957c4b71844cb850dea3a6cb.tar.bz2
dotty-d06df38c5e48ae8c957c4b71844cb850dea3a6cb.zip
Fix errors with Javadoc 8
`sbt dotty-interfaces/publishLocal` fails for me, fix enough errors to make it work.
Diffstat (limited to 'interfaces')
-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. */