From 82dbf11b42659b4d2d7fd10fc26b613d67304b16 Mon Sep 17 00:00:00 2001 From: Pierre HUBERT Date: Thu, 30 May 2024 19:56:35 +0200 Subject: [PATCH] Fix typo --- .../src/controllers/accommodations_reservations_controller.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/geneit_backend/src/controllers/accommodations_reservations_controller.rs b/geneit_backend/src/controllers/accommodations_reservations_controller.rs index de15350..67469fb 100644 --- a/geneit_backend/src/controllers/accommodations_reservations_controller.rs +++ b/geneit_backend/src/controllers/accommodations_reservations_controller.rs @@ -22,7 +22,7 @@ impl UpdateReservationQuery { ) -> anyhow::Result> { if !a.open_to_reservations { return Ok(Some( - "The accommodation is not open to reservations create / update!", + "The accommodation is not open to reservations creation / update!", )); }