From 9d99a927754de25f584c08c423866c12207ce9e3 Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Sat, 9 Nov 2013 22:20:00 -0600 Subject: [PATCH] Remove extra parentheses --- doc.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc.go b/doc.go index 8ee5540..b2deed3 100644 --- a/doc.go +++ b/doc.go @@ -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.