Browse Source

removed line break in readme

Keelan Lightfoot 6 years ago
parent
commit
90feea4d78
1 changed files with 0 additions and 1 deletions
  1. 0
    1
      README.md

+ 0
- 1
README.md View File

36
 func main() {
36
 func main() {
37
 	router := pathrouter.New()
37
 	router := pathrouter.New()
38
 	router.Handle("/hello/:name", Hello)
38
 	router.Handle("/hello/:name", Hello)
39
-	
40
 	router.Execute("/hello/bob", "boring user data")
39
 	router.Execute("/hello/bob", "boring user data")
41
 }
40
 }
42
 ```
41
 ```