Fix markdown for code example.

This commit is contained in:
Josh Suereth 2014-10-24 18:55:00 -04:00
parent 62d170f717
commit bfb4351fd7
1 changed files with 2 additions and 1 deletions

View File

@ -41,10 +41,11 @@
- Maven artifact dependencies will limit their transitive dependencies to `Compile` rather than *every configuration* if no `master` configuration is found. [#1586][1586] by [@jsuereth][@jsuereth]
- The new natural whitspace handling parser is unable to cope with certain classes of Scala syntax. In particular, top-level pattern matches, or multi-value defintions are no longer supported:
```scala
val x, y = project // BAD
val x = project //
val y = project // GOOD
```
### Improvements