From e0a1505d138aba318d222f21261beac45bae8fcf Mon Sep 17 00:00:00 2001 From: Dominic Date: Sun, 5 Apr 2020 23:17:53 +0200 Subject: [PATCH] update readme --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e6b63f6..04458b1 100644 --- a/README.md +++ b/README.md @@ -49,7 +49,7 @@ fn read_all(_state: &mut State) -> Success> { /// Our main method. fn main() { gotham::start("127.0.0.1:8080", build_simple_router(|route| { - route.resource::("users"); + route.resource::("users"); })); } ```