Replace underscores with hyphens in doc link to error code

This commit is contained in:
Loïc Lecrenier 2023-01-02 16:13:44 +01:00
parent db7eaf23f4
commit 2d74678b51
28 changed files with 174 additions and 159 deletions

View file

@ -27,7 +27,7 @@ async fn error_get_unexisting_document() {
"message": "Document `1` not found.",
"code": "document_not_found",
"type": "invalid_request",
"link": "https://docs.meilisearch.com/errors#document_not_found"
"link": "https://docs.meilisearch.com/errors#document-not-found"
});
assert_eq!(response, expected_response);
@ -90,7 +90,7 @@ async fn error_get_unexisting_index_all_documents() {
"message": "Index `test` not found.",
"code": "index_not_found",
"type": "invalid_request",
"link": "https://docs.meilisearch.com/errors#index_not_found"
"link": "https://docs.meilisearch.com/errors#index-not-found"
});
assert_eq!(response, expected_response);