From 4faa8d47288bae433ea6e34ac6ac41ac402e92d5 Mon Sep 17 00:00:00 2001 From: Dmitry Harnitski Date: Wed, 19 Apr 2017 22:56:52 -0400 Subject: [PATCH] 03.4 - fix Routing title --- en/03.4.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/03.4.md b/en/03.4.md index 45eb19b0..123db21e 100644 --- a/en/03.4.md +++ b/en/03.4.md @@ -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.