From 248422cb5004dda33c1e21ecc6cc431e6ff96b50 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Gonz=C3=A1lez?= Date: Mon, 14 Mar 2022 11:13:54 +0100 Subject: [PATCH] M #: Fix error on --filter CLI flag description (#1836) (cherry picked from commit 42ba75004af8b61490b2314d39f86198ad2550bf) --- src/cli/cli_helper.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/cli/cli_helper.rb b/src/cli/cli_helper.rb index eb50c04d95..e3505434fe 100644 --- a/src/cli/cli_helper.rb +++ b/src/cli/cli_helper.rb @@ -61,7 +61,8 @@ module CLIHelper ' ' * 31 << 'column=value pairs.' << ' ' * 31 << "Valid operators #{FILTER_OPS.join(',')}" << ' ' * 31 << 'e.g. NAME=test (match name with test)' << - ' ' * 31 << 'NAME~test (match test, te, tes..)' + ' ' * 31 << 'NAME~test (match every NAME containing' << + ' ' * 31 << 'the substring \'test\')' } OPERATOR = {