Skip to content

Commit

Permalink
Merge pull request #10376 from xuwei-k/SimpleTracer-scaladoc
Browse files Browse the repository at this point in the history
fix `SimpleTracer` scaladoc
  • Loading branch information
lrytz committed Apr 18, 2023
2 parents 185d189 + 2360477 commit dfe438a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/compiler/scala/tools/nsc/util/SimpleTracer.scala
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ package util
import java.io.PrintStream

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

0 comments on commit dfe438a

Please sign in to comment.