From 7d3aabbd8deabedce43aba8e42dbfa672e4061c9 Mon Sep 17 00:00:00 2001 From: Darien Raymond Date: Sun, 14 Oct 2018 20:18:02 +0200 Subject: [PATCH] fix comment --- router.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/router.go b/router.go index 5bbc0f8b..c8058952 100644 --- a/router.go +++ b/router.go @@ -56,7 +56,7 @@ func (d *syncDispatcher) Set(disp routing.Dispatcher) { d.Lock() defer d.Unlock() - common.Close(d.Dispatcher) // nolint: errorcheck + common.Close(d.Dispatcher) // nolint: errcheck d.Dispatcher = disp }