From 8eec3bcdc24c14e6028370fae929d58e6b4416a3 Mon Sep 17 00:00:00 2001 From: mpostma Date: Thu, 16 Jul 2020 15:14:53 +0200 Subject: [PATCH] update error url --- 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 850076b7b..66435ed0c 100644 --- a/meilisearch-error/src/lib.rs +++ b/meilisearch-error/src/lib.rs @@ -142,7 +142,7 @@ impl Code { /// return the doc url ascociated with the error fn url(&self) -> String { - format!("https://docs.meilisearch.com/error/{}", self.name()) + format!("https://docs.meilisearch.com/errors#{}", self.name()) } }