Skip to content

Commit eb1e71f

Browse files
committed
Fix syntax in Expr.scala
``` class Expr private object ``` now means the `private` modifier is for the following `object`, not the (invisible) constructor of `Expr`.
1 parent d2a5fc7 commit eb1e71f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/src/scala/quoted/Expr.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ package scala.quoted
44
*
55
* `Expr` has extension methods that are defined in `scala.quoted.Quotes`.
66
*/
7-
abstract class Expr[+T] private[scala]
7+
abstract class Expr[+T] private[scala] ()
88

99
/** Constructors for expressions */
1010
object Expr {

0 commit comments

Comments
 (0)