src/api2/config/datastore.rs: fix api docu

This commit is contained in:
Dietmar Maurer 2019-12-18 10:48:19 +01:00
parent 424766bc3b
commit f0db500808
1 changed files with 1 additions and 1 deletions

View File

@ -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()),
],
)
);