From f0db500808f2551e6985f954d8d3a3f52ca5f0ac Mon Sep 17 00:00:00 2001 From: Dietmar Maurer Date: Wed, 18 Dec 2019 10:48:19 +0100 Subject: [PATCH] src/api2/config/datastore.rs: fix api docu --- src/api2/config/datastore.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api2/config/datastore.rs b/src/api2/config/datastore.rs index 92d1b17e..5e1c995b 100644 --- a/src/api2/config/datastore.rs +++ b/src/api2/config/datastore.rs @@ -32,7 +32,7 @@ pub const POST: ApiMethod = ApiMethod::new( "Create new datastore.", &[ ("name", false, &DATASTORE_SCHEMA), - ("path", false, &StringSchema::new("Directory path (must exist).").schema()), + ("path", false, &StringSchema::new("Directory path. The directory path is created if it does not already exist.").schema()), ], ) );