From ae4f9e3db788cbc696a596ffd4f8af5716836c37 Mon Sep 17 00:00:00 2001 From: Ema Panz Date: Mon, 16 Apr 2018 22:01:10 +0200 Subject: [PATCH] Fix typo in comment --- cmd/tusd/cli/hooks.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/tusd/cli/hooks.go b/cmd/tusd/cli/hooks.go index b38f34d..4c71b7d 100644 --- a/cmd/tusd/cli/hooks.go +++ b/cmd/tusd/cli/hooks.go @@ -62,7 +62,7 @@ func SetupPostHooks(handler *tusd.Handler) { func invokeHook(typ HookType, info tusd.FileInfo) { go func() { - // Error handling is token care of by the function. + // Error handling is taken care by the function. _, _ = invokeHookSync(typ, info, false) }() }