SYSTEMD_CALENDAR_EVENT_SCHEMA: fix wrong schema description

This commit is contained in:
Dietmar Maurer 2020-09-07 09:07:55 +02:00
parent 44055cac4d
commit 02e47b8d6e
1 changed files with 1 additions and 1 deletions

View File

@ -252,6 +252,6 @@ pub const SYSTEMD_TIMESPAN_SCHEMA: Schema = StringSchema::new(
.schema();
pub const SYSTEMD_CALENDAR_EVENT_SCHEMA: Schema = StringSchema::new(
"systemd time span")
"systemd calendar event")
.format(&ApiStringFormat::VerifyFn(super::time::verify_calendar_event))
.schema();