Skip to content

Commit

Permalink
Fix typo in compile option
Browse files Browse the repository at this point in the history
After updating Scala version, Scalac started correctly complaining that

[error] 'implicits' is not a valid choice for '-language'
  • Loading branch information
Blaisorblade committed Aug 28, 2014
1 parent 16bf59a commit 2912a9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ val root = project in file(".") dependsOn macros
//resolvers += Resolver.sonatypeRepo("releases")

//We need to specify the next build settings for all projects. Hence, we use ThisBuild.
scalacOptions in ThisBuild ++= Seq("-language:experimental.macros", "-feature", "-deprecation", "-unchecked", "-language:implicits")
scalacOptions in ThisBuild ++= Seq("-language:experimental.macros", "-feature", "-deprecation", "-unchecked", "-language:implicitConversions")

scalaVersion in ThisBuild := "2.11.2"

Expand Down

0 comments on commit 2912a9c

Please sign in to comment.