Skip to content

Commit d06df38

Browse files
committed
Fix errors with Javadoc 8
`sbt dotty-interfaces/publishLocal` fails for me, fix enough errors to make it work.
1 parent 6610658 commit d06df38

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

interfaces/src/main/java/dotty/tools/dotc/interfaces/CompilerCallback.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* You should implement this interface if you want to react to one or more of
66
* these events.
77
*
8-
* @see the method `process` of `dotty.tools.dotc.Driver` for more information.
8+
* See the method `process` of `dotty.tools.dotc.Driver` for more information.
99
*/
1010
public interface CompilerCallback {
1111
/** Called when a class has been generated.

interfaces/src/main/java/dotty/tools/dotc/interfaces/SimpleReporter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* You should implement this interface if you want to handle the diagnostics
66
* returned by the compiler yourself.
77
*
8-
* @see the method `process` of `dotty.tools.dotc.Driver` for more information.
8+
* See the method `process` of `dotty.tools.dotc.Driver` for more information.
99
*/
1010
public interface SimpleReporter {
1111
/** Report a diagnostic. */

0 commit comments

Comments
 (0)