[docs] Improve docstrings for middleware, skipclean (#375)

This commit is contained in:
Matt Silverlock
2018-05-12 20:22:33 -07:00
committed by GitHub
parent fdeb7bc314
commit e3702bed27
3 changed files with 4 additions and 4 deletions

2
mux.go
View File

@@ -13,7 +13,7 @@ import (
)
var (
// ErrMethodMismatch is returned when the error in the request does not match
// ErrMethodMismatch is returned when the method in the request does not match
// the method defined against the route.
ErrMethodMismatch = errors.New("method is not allowed")
// ErrNotFound is returned when no route match is found.