Browse Source

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

Fix typo in documentation
pull/43/head
Kamil Kisiel 12 years ago
parent
commit
42cbcc5a24
  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