From bb285ea687c5c77bb6935fdb2402b121d8efcbec Mon Sep 17 00:00:00 2001 From: Matt Silverlock Date: Wed, 30 Aug 2017 13:57:41 -0700 Subject: [PATCH] [docs] Fix missing space in docstring (#289) --- mux_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mux_test.go b/mux_test.go index 413f13f..484fab4 100644 --- a/mux_test.go +++ b/mux_test.go @@ -1896,7 +1896,7 @@ func TestNoMatchMethodErrorHandler(t *testing.T) { t.Errorf("Expecting code %v", 405) } - //Add matching route now + // Add matching route r.HandleFunc("/", func1).Methods("PUT") match = new(RouteMatch)