commit aebfbf7544df46d50bb246c50aa74194dfe35876
parent 965b6cdd6b505862f05d934ab7dce9a3bd49c7da
Author: Natasha Kerensikova <natgh@instinctive.eu>
Date: Thu, 21 Mar 2024 17:21:35 +0000
Help texts for commands `protect` dans `unprotect` are corrected
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/iens.scm b/src/iens.scm
@@ -594,7 +594,7 @@
(update-feed-cache ptime)))
(defcmd (protect . args)
- "[timestamp] [entry-id]" "Protect entries from modification"
+ "[[timestamp] entry-id]" "Protect entries from modification"
(cond ((null? args)
(protect* (current-seconds) cur-entry))
((null? (cdr args))
@@ -614,7 +614,7 @@
(update-feed-cache mtime))
(defcmd (unprotect . args)
- "[timestamp] [entry-id]" "Unprotect entries from modification"
+ "[[timestamp] entry-id]" "Unprotect entries from modification"
(cond ((null? args)
(unprotect* (current-seconds) cur-entry))
((null? (cdr args))