From 312735707f95b56f83155b84b92bc8dd83b003e0 Mon Sep 17 00:00:00 2001 From: Julien Neuhart Date: Fri, 30 Mar 2018 09:24:06 +0200 Subject: [PATCH] fixing typo in error message --- app/handlers/context/context.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/handlers/context/context.go b/app/handlers/context/context.go index 7300f1a5..e0b6d55d 100644 --- a/app/handlers/context/context.go +++ b/app/handlers/context/context.go @@ -74,7 +74,7 @@ func WithResultFilePath(r *http.Request, resultFilePath string) *http.Request { type resultFilePathNotFoundError struct{} func (e *resultFilePathNotFoundError) Error() string { - return "The resultFilePath was not found in request context" + return "The result file path was not found in request context" } func GetResultFilePath(r *http.Request) (string, error) {