From 1993c303f5b9cb1d18a1b3b26d7e75d1213cd69e Mon Sep 17 00:00:00 2001 From: Baptiste Fontaine Date: Sun, 18 May 2014 10:17:18 +0200 Subject: [PATCH] Typo fixed in README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5e38b7a..12c664a 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ r3_tree_insert_pathl(n , "/zoo" , strlen("/zoo") , NULL, &route_data r3_tree_insert_pathl(n , "/foo/bar" , strlen("/foo/bar") , NULL, &route_data ); r3_tree_insert_pathl(n , "/bar" , strlen("/bar") , NULL, &route_data ); r3_tree_insert_pathl(n , "/post/{id}" , strlen("/post/{id}") , NULL, &route_data ); -r3_tree_insert_pathl(n , "/user/{id}" , strlen("/user/{id:\\d+}") , NULL, &route_data ); +r3_tree_insert_pathl(n , "/user/{id:\\d+}" , strlen("/user/{id:\\d+}") , NULL, &route_data ); // let's compile the tree! r3_tree_compile(n);