From 926cccef85417b5bc454a3cbf68cfd3214d6ae9f Mon Sep 17 00:00:00 2001 From: Werner Koch Date: Sat, 12 Oct 2019 12:32:43 +0200 Subject: [PATCH] doc: Fix c+p bug in the examples for --import-filter. -- Reported-by: Steve McIntyre Signed-off-by: Werner Koch --- doc/gpg.texi | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/doc/gpg.texi b/doc/gpg.texi index fe9e0bfbe..0965a7eb7 100644 --- a/doc/gpg.texi +++ b/doc/gpg.texi @@ -3889,10 +3889,10 @@ the same type. For example the four options in this example: @c man:.RS @example - --import-option keep-uid="uid =~ Alfa" - --import-option keep-uid="&& uid !~ Test" - --import-option keep-uid="|| uid =~ Alpha" - --import-option keep-uid="uid !~ Test" + --import-filter keep-uid="uid =~ Alfa" + --import-filter keep-uid="&& uid !~ Test" + --import-filter keep-uid="|| uid =~ Alpha" + --import-filter keep-uid="uid !~ Test" @end example @c man:.RE @@ -3901,7 +3901,7 @@ which is equivalent to @c man:.RS @example - --import-option \ + --import-filter \ keep-uid="uid =~ Alfa" && uid !~ Test" || uid =~ Alpha" && "uid !~ Test" @end example @c man:.RE