From a6ec63d35fccfec4c0126315d45e7abe3ba9cf79 Mon Sep 17 00:00:00 2001 From: Preetha Appan Date: Tue, 13 Mar 2018 18:25:41 -0500 Subject: [PATCH] Fix incorrect comment --- nomad/structs/structs.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nomad/structs/structs.go b/nomad/structs/structs.go index c498e6160..5b555c3b9 100644 --- a/nomad/structs/structs.go +++ b/nomad/structs/structs.go @@ -6159,8 +6159,8 @@ func (r *WrappedServerError) IsServerSide() bool { return true } -// Recoverable is an interface for errors to implement to indicate whether or -// not they are fatal or recoverable. +// ServerSideError is an interface for errors to implement to indicate +// errors occuring after the request makes it to a server type ServerSideError interface { error IsServerSide() bool