From 0acf824217f9e4852baf721a813f6ff66c3f570f Mon Sep 17 00:00:00 2001 From: Mickael Remond Date: Wed, 26 Jun 2019 16:21:18 +0200 Subject: [PATCH] Fix typo in error const enum --- error_enum.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/error_enum.go b/error_enum.go index b89b925..314df4c 100644 --- a/error_enum.go +++ b/error_enum.go @@ -8,6 +8,6 @@ const ( ErrorTypeAuth ErrorType = "auth" ErrorTypeCancel ErrorType = "cancel" ErrorTypeContinue ErrorType = "continue" - ErrorTypeModify ErrorType = "motify" + ErrorTypeModify ErrorType = "modify" ErrorTypeWait ErrorType = "wait" )