Remove extra parentheses
This commit is contained in:
2
doc.go
2
doc.go
@@ -134,7 +134,7 @@ the inner routes use it as base for their paths:
|
|||||||
// "/products/{key}/"
|
// "/products/{key}/"
|
||||||
s.HandleFunc("/{key}/", ProductHandler)
|
s.HandleFunc("/{key}/", ProductHandler)
|
||||||
// "/products/{key}/details"
|
// "/products/{key}/details"
|
||||||
s.HandleFunc("/{key}/details"), ProductDetailsHandler)
|
s.HandleFunc("/{key}/details", ProductDetailsHandler)
|
||||||
|
|
||||||
Now let's see how to build registered URLs.
|
Now let's see how to build registered URLs.
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user