aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorJakob Odersky <jakob@odersky.com>2018-03-08 16:28:33 -0800
committerJakob Odersky <jakob@odersky.com>2018-03-08 16:28:33 -0800
commitcf7531102305dd9131748eaf486e9519ab454bcb (patch)
tree030a38e7f601138e3176e26cc46b8a8e65189a99 /README.md
parent5ef502abc058358ec3a329c774bb42b9a7bd106f (diff)
downloadspray-json-derivation-cf7531102305dd9131748eaf486e9519ab454bcb.tar.gz
spray-json-derivation-cf7531102305dd9131748eaf486e9519ab454bcb.tar.bz2
spray-json-derivation-cf7531102305dd9131748eaf486e9519ab454bcb.zip
Rename packages to spray.json, for seamless integration
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 0 insertions, 2 deletions
diff --git a/README.md b/README.md
index f7c2070..f8cac76 100644
--- a/README.md
+++ b/README.md
@@ -31,7 +31,6 @@ protocol stack. That's it.
```scala
import spray.json._
-import xyz.driver.json.ImplicitDerivedFormats
object Main extends App with DefaultJsonProtocol with ImplicitDerivedFormats {
@@ -73,7 +72,6 @@ object Main extends App with DefaultJsonProtocol with ImplicitDerivedFormats {
It is also possible to summon derived formats explicitly by mixing in `DerivedFormats`instead of `ImplicitDerivedFormats`:
```scala
import spray.json._
-import xyz.driver.json.DerivedFormats
object Main extends App with DefaultJsonProtocol with DerivedFormats {