diff --git a/crates/caldav/src/calendar_object/methods.rs b/crates/caldav/src/calendar_object/methods.rs index be8fa7f..cf931b0 100644 --- a/crates/caldav/src/calendar_object/methods.rs +++ b/crates/caldav/src/calendar_object/methods.rs @@ -88,7 +88,7 @@ pub async fn put_event( match store.get_object(&principal, &cid, &uid).await { Ok(_) => { // Conflict - return Ok(HttpResponse::Conflict().body("Resource with this URI already existing")); + return Ok(HttpResponse::Conflict().body("Resource with this URI already exists")); } Err(rustical_store::Error::NotFound) => { // Path unused, we can proceed