summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/transform/CleanUp.scala
diff options
context:
space:
mode:
authorFrançois Garillot <francois@garillot.net>2013-04-16 09:46:36 +0200
committerFrançois Garillot <francois@garillot.net>2013-04-16 09:46:36 +0200
commit47b626e82db995a6b9dc64d21b417064aafef798 (patch)
tree6d44b3fe00bac45d29ad7b64a98591e978756698 /src/compiler/scala/tools/nsc/transform/CleanUp.scala
parentf6323d866f3b9a6fa9a5d0218a47922115974781 (diff)
downloadscala-47b626e82db995a6b9dc64d21b417064aafef798.tar.gz
scala-47b626e82db995a6b9dc64d21b417064aafef798.tar.bz2
scala-47b626e82db995a6b9dc64d21b417064aafef798.zip
Change unrecognized scaladoc comments to C-style
Diffstat (limited to 'src/compiler/scala/tools/nsc/transform/CleanUp.scala')
-rw-r--r--src/compiler/scala/tools/nsc/transform/CleanUp.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/transform/CleanUp.scala b/src/compiler/scala/tools/nsc/transform/CleanUp.scala
index ac18e5ba4f..2ece06c801 100644
--- a/src/compiler/scala/tools/nsc/transform/CleanUp.scala
+++ b/src/compiler/scala/tools/nsc/transform/CleanUp.scala
@@ -266,7 +266,7 @@ abstract class CleanUp extends Transform with ast.TreeDSL {
gen.mkMethodCall(definitions.Boxes_isNumber, t :: Nil)
)
- /** The Tree => Tree function in the return is necessary to prevent the original qual
+ /* The Tree => Tree function in the return is necessary to prevent the original qual
* from being duplicated in the resulting code. It may be a side-effecting expression,
* so all the test logic is routed through gen.evalOnce, which creates a block like
* { val x$1 = qual; if (x$1.foo || x$1.bar) f1(x$1) else f2(x$1) }