Skip to content

Commit f2a6d7f

Browse files
committed
tweak-readme
1 parent 39ac676 commit f2a6d7f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

readme.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ val r = requests.put("http://httpbin.org/put", data = Map("key" -> "value"))
9494
Apart from POSTing key-value pairs, you can also POST `String`s, `Array[Byte]`s,
9595
`java.io.File`s, `java.nio.file.Path`s, and `requests.MultiPart` uploads:
9696

97-
```
97+
```scala
9898
requests.post("https://httpbin.org/post", data = "Hello World")
9999
requests.post("https://httpbin.org/post", data = Array[Byte](1, 2, 3))
100100
requests.post("https://httpbin.org/post", data = new java.io.File("thing.json"))
@@ -583,7 +583,8 @@ val response = request.send()
583583
// response.unsafeBody: by default read into a String
584584
println(response.unsafeBody)
585585
```
586-
```dispatch
586+
```scala
587+
// Dispatch
587588
import dispatch._, Defaults._
588589
val svc = url("http://api.hostip.info/country.php")
589590
val country = Http.default(svc OK as.String)

0 commit comments

Comments
 (0)