Skip to content

Commit 6e4c1a6

Browse files
sarxosslandelle
authored andcommitted
Quotation mark in README.md WebDAV example (AsyncHttpClient#1553)
Some minor fixes in examples code to make them compilable.
1 parent 99142bb commit 6e4c1a6

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -263,8 +263,10 @@ Response response = c.executeRequest(mkcolRequest).get();
263263
or
264264

265265
```java
266-
Request propFindRequest = new RequestBuilder("PROPFIND").setUrl("http://host:port).build();
267-
Response response = c.executeRequest(propFindRequest, new AsyncHandler(){...}).get();
266+
Request propFindRequest = new RequestBuilder("PROPFIND").setUrl("http://host:port").build();
267+
Response response = c.executeRequest(propFindRequest, new AsyncHandler() {
268+
// ...
269+
}).get();
268270
```
269271

270272
## More

0 commit comments

Comments
 (0)