From 70aede7af92b11ba0fb99ce83abe66b45cc8cc13 Mon Sep 17 00:00:00 2001
From: James Youngman <james@youngman.org>
Date: Fri, 25 Jun 2021 19:30:04 +0100
Subject: [PATCH] Fix Savannah bug 60823: unescaped `@' in find.texi code
 example.
To: findutils-patches@gnu.org

---
 doc/find.texi | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/doc/find.texi b/doc/find.texi
index d4b5601a..d70ccc2a 100644
--- a/doc/find.texi
+++ b/doc/find.texi
@@ -4987,7 +4987,7 @@ It is possible to use the @samp{-printf} action to abandon the use of
 @code{test} entirely:
 
 @smallexample
-newest=$(find subdir -newer timestamp -printf "%A@:%p\n" |
+newest=$(find subdir -newer timestamp -printf "%A@@:%p\n" |
            sort -n |
            tail -n1 |
            cut -d: -f2- )
-- 
2.20.1

