fixing typo in error message

This commit is contained in:
Julien Neuhart
2018-03-30 09:24:06 +02:00
parent a882b7e5c5
commit 312735707f

View File

@@ -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) {