From d82e18634abceb724a45ff16d8adf28f73fb5634 Mon Sep 17 00:00:00 2001 From: Vladimir Markelov Date: Sun, 24 Nov 2024 17:26:21 -0800 Subject: [PATCH] #101 - update README examples --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 14cc767..f310fc0 100644 --- a/README.md +++ b/README.md @@ -1394,7 +1394,7 @@ By default todos from a given range are processed only if they are incomplete. T | Command | Description | | -------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------ | | `ttdl e 2-5 "new subject"` | only the first incomplete todos with ID between 2 and 5 changes its subject (in this case todo with ID equals 2 gets subject "new subject") | -| `ttdl e 2-5 "new subject"` -i | edits in the interactive mode todos with ID between 2 and 5. The new subject value is ignored | +| `ttdl e 2-5 "new subject" -i` | edits in the interactive mode todos with ID between 2 and 5. The new subject value is ignored | | `ttdl e +proj --repl-ctx=bug1010@bug1020` | replace context `bug1010` with `bug1020` for all incomplete todos that related to project `proj` | | `ttdl e @customer_acme --set-due=2018-12-31` | set due date 2018-12-31 for all incomplete todos that has `customer_acme` context | | `ttdl e @customer_acme --set-due=none` | remove due date 2018-12-31 for all incomplete todos that has `customer_acme` context |