From e2fbf4d5fdca4d79069d5c9a49ee8cd90c8cb0b7 Mon Sep 17 00:00:00 2001 From: David de Barros Tadokoro <95055784+davidbtadokoro@users.noreply.github.com> Date: Mon, 11 Mar 2024 16:16:25 -0300 Subject: [PATCH] expand: fix short option `-t` argument separator (#12493) `expand` doesn't accept the equals sign '=' as a separator between the short option `-t` and its arguments. Signed-off-by: David Tadokoro --- pages.it/common/expand.md | 4 ++-- pages/common/expand.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pages.it/common/expand.md b/pages.it/common/expand.md index 343232a3e5..d04e034fd2 100644 --- a/pages.it/common/expand.md +++ b/pages.it/common/expand.md @@ -17,8 +17,8 @@ - Sostituisci i tab con un determinato numero di spazi, non 8 (default): -`expand -t={{numero_spazi}} {{file}}` +`expand -t {{numero_spazi}} {{file}}` - Utilizza una lista separata da virgole di posizioni esplicite di tab: -`expand -t={{1,4,6}}` +`expand -t {{1,4,6}}` diff --git a/pages/common/expand.md b/pages/common/expand.md index 7fe100a399..2397846e5a 100644 --- a/pages/common/expand.md +++ b/pages/common/expand.md @@ -17,8 +17,8 @@ - Have tabs a certain number of characters apart, not 8: -`expand -t={{number}} {{path/to/file}}` +`expand -t {{number}} {{path/to/file}}` - Use a comma separated list of explicit tab positions: -`expand -t={{1,4,6}}` +`expand -t {{1,4,6}}`