From a9e9f06740f4ac052f29ba56d6fd4105e7e32194 Mon Sep 17 00:00:00 2001 From: nexy7574 Date: Fri, 20 Dec 2024 18:39:05 +0000 Subject: [PATCH] Fix stupid doc command issue --- src/admin/media/mod.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/admin/media/mod.rs b/src/admin/media/mod.rs index 5a95b9feb..24d9a8798 100644 --- a/src/admin/media/mod.rs +++ b/src/admin/media/mod.rs @@ -27,18 +27,18 @@ pub(super) enum MediaCommand { DeleteList, /// - Deletes all remote (and optionally local) media created before or - /// after [duration] time using filesystem metadata first created at date, + /// after \[duration] time using filesystem metadata first created at date, /// or fallback to last modified date. This will always ignore errors by /// default. DeletePastRemoteMedia { /// - The relative time (e.g. 30s, 5m, 7d) within which to search duration: String, - /// - Only delete media created more recently than [duration] ago + /// - Only delete media created more recently than \[duration] ago #[arg(long, short)] before: bool, - /// - Only delete media created after [duration] ago + /// - Only delete media created after \[duration] ago #[arg(long, short)] after: bool,