Browse Source

Remove extra parentheses

Andrew Williams 12 years ago
parent
commit
9d99a92775
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      doc.go

+ 1
- 1
doc.go View File

@ -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