docs: fix EXPORT_SLOT_LIST_SCHEMA description

This commit is contained in:
Dietmar Maurer 2021-02-22 09:05:07 +01:00
parent 451856d21d
commit 6252df4c18

View File

@ -40,11 +40,11 @@ pub const SLOT_ARRAY_SCHEMA: Schema = ArraySchema::new(
.schema())
.schema();
pub const EXPORT_SLOT_LIST_SCHEMA: Schema = StringSchema::new(r###"\
pub const EXPORT_SLOT_LIST_SCHEMA: Schema = StringSchema::new("\
A list of slot numbers, comma separated. Those slots are reserved for
Import/Export, i.e. any media in those slots are considered to be
'offline'.
"###)
")
.format(&ApiStringFormat::PropertyString(&SLOT_ARRAY_SCHEMA))
.schema();