From 6fea050813ea4b683097fc4a174e6fcab9121fa4 Mon Sep 17 00:00:00 2001 From: many Date: Thu, 28 Oct 2021 16:57:48 +0200 Subject: [PATCH] Change authentication error type to be --- meilisearch-error/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meilisearch-error/src/lib.rs b/meilisearch-error/src/lib.rs index 26980290d..c6a62aa70 100644 --- a/meilisearch-error/src/lib.rs +++ b/meilisearch-error/src/lib.rs @@ -41,7 +41,7 @@ impl fmt::Display for ErrorType { match self { InternalError => write!(f, "internal"), InvalidRequestError => write!(f, "invalid_request"), - AuthenticationError => write!(f, "authentication"), + AuthenticationError => write!(f, "auth"), } } }