Skip to content

Commit dfe438a

Browse files
authored
Merge pull request scala#10376 from xuwei-k/SimpleTracer-scaladoc
fix `SimpleTracer` scaladoc
2 parents 185d189 + 2360477 commit dfe438a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/compiler/scala/tools/nsc/util/SimpleTracer.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ package util
1818
import java.io.PrintStream
1919

2020
/** A simple tracer
21-
* @param out: The print stream where trace info should be sent
22-
* @param enabled: A condition that must be true for trace info to be produced.
21+
* @param out The print stream where trace info should be sent
22+
* @param enabled A condition that must be true for trace info to be produced.
2323
*/
2424
class SimpleTracer(out: PrintStream, enabled: Boolean = true) {
2525
def apply[T](msg: => String)(value: T): T = {

0 commit comments

Comments
 (0)