From c810928262241370df14cc6df9f200aa0dfe99fd Mon Sep 17 00:00:00 2001 From: Nikolay Kirsh Date: Mon, 2 Mar 2015 16:25:19 +0500 Subject: [PATCH] fix Second const --- hooks/sentry/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hooks/sentry/README.md b/hooks/sentry/README.md index a409f3b..19e58bb 100644 --- a/hooks/sentry/README.md +++ b/hooks/sentry/README.md @@ -57,5 +57,5 @@ with a call to `NewSentryHook`. This can be changed by assigning a value to the ```go hook, _ := logrus_sentry.NewSentryHook(...) -hook.Timeout = 20*time.Seconds +hook.Timeout = 20*time.Second ```