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,7 +36,6 @@ func Hello(ps pathrouter.Params, d interface{}) {
36 36
 func main() {
37 37
 	router := pathrouter.New()
38 38
 	router.Handle("/hello/:name", Hello)
39
-	
40 39
 	router.Execute("/hello/bob", "boring user data")
41 40
 }
42 41
 ```