From 765979092349fff3de4c4478eb40a7a4d6f13378 Mon Sep 17 00:00:00 2001 From: BUFU <62631035+BUFU1610@users.noreply.github.com> Date: Fri, 13 Aug 2021 23:28:51 +0200 Subject: [PATCH] fixed --keep-within-X options in example The order of the words was wrong in the example, i.e. fixed to --keep-within-hourly from --keep-hourly-within. --- doc/060_forget.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/060_forget.rst b/doc/060_forget.rst index d07f5886c..8686f05cd 100644 --- a/doc/060_forget.rst +++ b/doc/060_forget.rst @@ -331,8 +331,8 @@ irregular backups. For example, the 7 snapshots specified with ``--keep-daily 7` might be spread over a longer period. If what you want is to keep daily snapshots for a week, weekly for a month, monthly for a year and yearly for 75 years, you could specify: -``forget --keep-daily-within 7d --keep-weekly-within 1m --keep-monthly-within 1y ---keep-yearly-within 75y`` +``forget --keep-within-daily 7d --keep-within-weekly 1m --keep-within-monthly 1y +--keep-within-yearly 75y`` (Note that `1w` is not a recognized duration, so you will have to specify `7d` instead)