summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/nsc/transform/Mixin.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/Mixin.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/Mixin.scala')
-rw-r--r--src/compiler/scala/tools/nsc/transform/Mixin.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/compiler/scala/tools/nsc/transform/Mixin.scala b/src/compiler/scala/tools/nsc/transform/Mixin.scala
index 35df63b246..8774390c8c 100644
--- a/src/compiler/scala/tools/nsc/transform/Mixin.scala
+++ b/src/compiler/scala/tools/nsc/transform/Mixin.scala
@@ -807,7 +807,7 @@ abstract class Mixin extends InfoTransform with ast.TreeDSL {
override def apply[T <: Tree](tree: T): T = if (from.isEmpty) tree else super.apply(tree)
}
- /** return a 'lazified' version of rhs. It uses double-checked locking to ensure
+ /* return a 'lazified' version of rhs. It uses double-checked locking to ensure
* initialization is performed at most once. For performance reasons the double-checked
* locking is split into two parts, the first (fast) path checks the bitmap without
* synchronizing, and if that fails it initializes the lazy val within the
@@ -1145,7 +1145,7 @@ abstract class Mixin extends InfoTransform with ast.TreeDSL {
qual
case Apply(Select(qual, _), args) =>
- /** Changes `qual.m(args)` where m refers to an implementation
+ /* Changes `qual.m(args)` where m refers to an implementation
* class method to Q.m(S, args) where Q is the implementation module of
* `m` and S is the self parameter for the call, which
* is determined as follows: