03.4 - fix Routing title

This commit is contained in:
Dmitry Harnitski
2017-04-19 22:56:52 -04:00
committed by GitHub
parent 9e29f42fa0
commit 4faa8d4728

View File

@@ -105,7 +105,7 @@ func main() {
} }
``` ```
#Routing # Routing
If you do not want to use a Router, you can still achieve what we wrote in the above section by replacing the second argument to `ListenAndServe` to nil and registering the URLs using a `HandleFunc` function which goes through all the registered URLs to find the best match, so care must be taken about the order of the registering. If you do not want to use a Router, you can still achieve what we wrote in the above section by replacing the second argument to `ListenAndServe` to nil and registering the URLs using a `HandleFunc` function which goes through all the registered URLs to find the best match, so care must be taken about the order of the registering.