From 9f950b67bc3a52216a7291b9e540549d01bdbf7c Mon Sep 17 00:00:00 2001
From: Bernhard Voelker <mail@bernhard-voelker.de>
Date: Thu, 17 Sep 2020 00:29:14 +0200
Subject: [PATCH] find.1: use consistent quoting in example

* find/find.1 (EXAMPLES): Use (aq...(aq consistently around the -exec
arguments containing the placeholder '{}/...'.

Suggested in https://sv.gnu.org/bugs/?59012
---
 find/find.1 | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/find/find.1 b/find/find.1
index 45895158..ee7c6842 100644
--- a/find/find.1
+++ b/find/find.1
@@ -2255,9 +2255,10 @@ what is going on.
 
 .P
 .nf
-.B find repo/ \e( \-exec test \-d \(aq{}\(aq/.svn \e; \-or \e
-.B \-exec test \-d {}/.git \e; \-or \-exec test \-d {}/CVS \e; \e) \e
-.B \-print \-prune
+.B find repo/ \e( \-exec test \-d \(aq{}/.svn\(aq \e; \e
+.B \t        \-or \-exec test \-d \(aq{}/.git\(aq \e; \e
+.B \t        \-or \-exec test \-d \(aq{}/CVS\(aq \e; \e
+.B \t \e) \-print \-prune
 .fi
 
 Given the following directory of projects and their associated SCM
-- 
2.28.0

