Skip to content

Commit ec0817f

Browse files
committed
recommend latest scala-parser-combinators
1 parent 7342270 commit ec0817f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

documentation/getting-started-intellij-track/building-a-scala-project-with-intellij-and-sbt.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ extra functionality to our apps.
8484
1. Open up `build.sbt` and add the following line:
8585

8686
```
87-
libraryDependencies += "org.scala-lang.modules" %% "scala-parser-combinators" % "1.0.5"
87+
libraryDependencies += "org.scala-lang.modules" %% "scala-parser-combinators" % "1.0.6"
8888
8989
```
9090
Here, `libraryDependencies` is a set of dependencies, and by using `+=`,

documentation/getting-started-sbt-track/getting-started-with-scala-and-sbt-on-the-command-line.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ extra functionality to our apps.
7373
1. Open up `build.sbt` and add the following line anywhere in the file:
7474

7575
```
76-
libraryDependencies += "org.scala-lang.modules" %% "scala-parser-combinators" % "1.0.5"
76+
libraryDependencies += "org.scala-lang.modules" %% "scala-parser-combinators" % "1.0.6"
7777
```
7878

7979
Here, `libraryDependencies` is a set of dependencies, and by using `+=`,

0 commit comments

Comments
 (0)