fix default port in doc

Summary:
when you run as-is it it launches on 8000 not 8080
Closes https://github.com/facebookincubator/duckling/pull/1

Differential Revision: D4981822

Pulled By: patapizza

fbshipit-source-id: 3352a80
This commit is contained in:
Noon van der Silk 2017-05-02 07:19:39 -07:00 committed by Facebook Github Bot
parent e85d2f507c
commit 88639e8a56

View File

@ -22,7 +22,7 @@ The first time you run it, it will download all required packages.
This runs a basic HTTP server. Example request:
```
$ curl -XPOST http://0.0.0.0:8080/parse --data 'text=tomorrow at eight'
$ curl -XPOST http://0.0.0.0:8000/parse --data 'text=tomorrow at eight'
```
See `exe/ExampleMain.hs` for an example on how to integrate Duckling in your