From 085f6e9560d99c62e369dc3485d62cf186c2dc0c Mon Sep 17 00:00:00 2001 From: Matthew Holt Date: Mon, 4 May 2015 13:42:39 -0600 Subject: [PATCH] Keepin' the comments true --- middleware/middleware.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/middleware/middleware.go b/middleware/middleware.go index c1049a5a..6f00c032 100644 --- a/middleware/middleware.go +++ b/middleware/middleware.go @@ -7,8 +7,6 @@ type ( // Middleware is the middle layer which represents the traditional // idea of middleware: it chains one Handler to the next by being // passed the next Handler in the chain. - // - // Note: This type will be moved into a different package in the future. Middleware func(Handler) Handler // Handler is like http.Handler except ServeHTTP returns a status code