Browse Source

Remove extra parentheses

pull/38/head
Andrew Williams 12 years ago
parent
commit
9d99a92775
  1. 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.

Loading…
Cancel
Save