Merge pull request #38 from TheDude05/fix-doc-typo

Fix typo in documentation
This commit is contained in:
Kamil Kisiel
2013-11-09 22:54:15 -08:00

2
doc.go
View File

@@ -134,7 +134,7 @@ the inner routes use it as base for their paths:
// "/products/{key}/"
s.HandleFunc("/{key}/", ProductHandler)
// "/products/{key}/details"
s.HandleFunc("/{key}/details"), ProductDetailsHandler)
s.HandleFunc("/{key}/details", ProductDetailsHandler)
Now let's see how to build registered URLs.