This commit is contained in:
in-void 2023-03-13 21:57:30 +01:00
parent 9745ffa796
commit a84eb70f99

View File

@ -29,7 +29,7 @@ func NewInternalServerError(err error) error {
return &ApiError{
Code: http.StatusInternalServerError,
Type: "InternalServerError",
Description: "Unexpected condition was encounteredn",
Description: "Unexpected condition was encountered",
Reason: err.Error(),
}
}