From 94e00aaed408c308a80bf5ba87473bdc9bf5e773 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 26e2088ef4..7de72add69 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 = {