Browse Source

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

Fix typo in documentation
Kamil Kisiel 12 years ago
parent
commit
42cbcc5a24
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}/"
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.


Loading…
Cancel
Save