Skip to content

Commit

Permalink
Docs
Browse files Browse the repository at this point in the history
  • Loading branch information
adamw committed Mar 22, 2019
1 parent 04b3aec commit 7cf1a49
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,14 +93,14 @@ And finally, type `endpoint.` and see where auto-complete gets you!

---

Sidenote for scala 2.12.4 and higher:
If you will encounter issue with compiling your project because of
StackOverflowException related to [this](https://github.com/scala/bug/issues/10604)
Sidenote for scala 2.12.4 and higher: if you encounter an issue with compiling your project because of
a `StackOverflowException` related to [this](https://github.com/scala/bug/issues/10604) scala bug,
please increase your stack memory. Example:

```
sbt -J-Xss4M clean compile
```

## Contributing

Tapir is an early stage project. Everything might change. All suggestions welcome :)
Expand Down
10 changes: 10 additions & 0 deletions doc/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,13 @@ using tapir and http4s.

Also check out the simple [runnable example](https://github.com/softwaremill/tapir/blob/master/playground/src/main/scala/tapir/example/BooksExample.scala)
which is available in the repository.

## StackOverflowException during compilation

Sidenote for scala 2.12.4 and higher: if you encounter an issue with compiling your project because of
a `StackOverflowException` related to [this](https://github.com/scala/bug/issues/10604) scala bug,
please increase your stack memory. Example:

```
sbt -J-Xss4M clean compile
```

0 comments on commit 7cf1a49

Please sign in to comment.