From 2d2c933611c32c0bf1459327f0e14ab21fa1b7f0 Mon Sep 17 00:00:00 2001 From: Nicolas DUDNICZENKO Date: Wed, 20 May 2020 11:57:44 +0200 Subject: [PATCH] typo in route/health.rs: HealtBody -> HealthBody --- meilisearch-http/src/routes/health.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meilisearch-http/src/routes/health.rs b/meilisearch-http/src/routes/health.rs index 4f7795e48..826e8ee02 100644 --- a/meilisearch-http/src/routes/health.rs +++ b/meilisearch-http/src/routes/health.rs @@ -45,14 +45,14 @@ async fn set_unhealthy(data: web::Data) -> Result, - body: web::Json, + body: web::Json, ) -> Result { if body.health { set_healthy(data).await