Skip to content

Commit e0d688e

Browse files
committed
Merge pull request #7 from kevincoghlan/patch-3
Fix SBT code snippet.
2 parents fc645ae + 6a619f4 commit e0d688e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ If you're using `sbt` 0.13.0+, just put the following lines in `build.sbt`:
171171

172172
And of course, if you're serious about performance you should add the following line to your `build.sbt` file:
173173
```scala
174-
scalacOptions += "-optimise -Yclosure-elim -Yinline"
174+
scalacOptions ++= Seq("-optimise", "-Yclosure-elim", "-Yinline")
175175
```
176176
(also consider `-Ybackend:GenBCode`)
177177

0 commit comments

Comments
 (0)