Update link to Service trait docs in tower-service README (#146)

* Update link to Service trait docs in tower-service README

* Update link to Service trait docs to latest published version
This commit is contained in:
Matthijs Brobbel 2019-01-14 19:08:43 +01:00 committed by Sean McArthur
parent b5af394366
commit 68ad8a00f2
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ By using standardizing the interface, middleware can be created. Middleware
*implement* `Service` by passing the request to another `Service`. The
middleware may take actions such as modify the request.
[`Service`]: https://docs.rs/tower-service/0.1/tower_service/trait.Service.html
[`Service`]: https://docs.rs/tower-service/latest/tower_service/trait.Service.html
## License