about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--router.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/router.go b/router.go
index 65b7763..41b1fc8 100644
--- a/router.go
+++ b/router.go
@@ -8,10 +8,10 @@ import (
 )
 
 type Router struct {
-	routes     []*Route
-	knownPaths map[string]map[string]bool
+	routes      []*Route
+	knownPaths  map[string]map[string]bool
 	withOptions bool
-	notAllowed bool
+	notAllowed  bool
 }
 
 var defaultHTTPMethods = []string{"GET", "HEAD", "PUT", "POST", "PATCH", "OPTIONS"}