From 6252df4c1889813f27526387c6678511c6c0177c Mon Sep 17 00:00:00 2001 From: Dietmar Maurer Date: Mon, 22 Feb 2021 09:05:07 +0100 Subject: [PATCH] docs: fix EXPORT_SLOT_LIST_SCHEMA description --- src/api2/types/tape/changer.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/api2/types/tape/changer.rs b/src/api2/types/tape/changer.rs index 780bf669..dca3ae16 100644 --- a/src/api2/types/tape/changer.rs +++ b/src/api2/types/tape/changer.rs @@ -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();