From fbf3d080c35a82ef3efed0cae424b6735da6ecbe Mon Sep 17 00:00:00 2001 From: Arnout Engelen Date: Sat, 31 Dec 2016 01:23:08 +0100 Subject: [PATCH 1/2] Update latest API link, add getting started link --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 31e4105a..4f182ec3 100644 --- a/README.md +++ b/README.md @@ -9,8 +9,8 @@ As of Scala 2.11, this library is a separate jar that can be omitted from Scala ## Documentation - * [Latest version](http://www.scala-lang.org/files/archive/api/2.11.2/scala-parser-combinators/) - * [Previous versions](http://scala-lang.org/documentation/api.html) (included in the API docs for the Scala library until Scala 2.11) + * A (perhaps somewhat outdated) [Getting Started](https://wiki.scala-lang.org/display/SW/Parser+Combinators--Getting+Started) + * [Current API](http://www.scala-lang.org/files/archive/api/current/scala-parser-combinators/scala/util/parsing/combinator) ## Adding an SBT dependency To depend on scala-parser-combinators in SBT, add something like this to your build.sbt: From 33792d3380791ddafb41760604857d2fc43e54e1 Mon Sep 17 00:00:00 2001 From: Arnout Engelen Date: Sat, 31 Dec 2016 01:36:48 +0100 Subject: [PATCH 2/2] Add link to 'Building a lexer and parser with Scala's Parser Combinators' --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 4f182ec3..97c4bb39 100644 --- a/README.md +++ b/README.md @@ -10,6 +10,7 @@ As of Scala 2.11, this library is a separate jar that can be omitted from Scala ## Documentation * A (perhaps somewhat outdated) [Getting Started](https://wiki.scala-lang.org/display/SW/Parser+Combinators--Getting+Started) + * A more complicated example, [Building a lexer and parser with Scala's Parser Combinators](https://enear.github.io/2016/03/31/parser-combinators/) * [Current API](http://www.scala-lang.org/files/archive/api/current/scala-parser-combinators/scala/util/parsing/combinator) ## Adding an SBT dependency