Skip to content

Commit 8a45e95

Browse files
committed
Fix typo
Fixes #171
1 parent 5dd70ee commit 8a45e95

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

router_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,11 +68,11 @@ func TestRouter(t *testing.T) {
6868
}
6969

7070
type handlerStruct struct {
71-
handeled *bool
71+
handled *bool
7272
}
7373

7474
func (h handlerStruct) ServeHTTP(w http.ResponseWriter, r *http.Request) {
75-
*h.handeled = true
75+
*h.handled = true
7676
}
7777

7878
func TestRouterAPI(t *testing.T) {

0 commit comments

Comments
 (0)