From a12f9807933bd463368c6111dbc283d8a65f20f7 Mon Sep 17 00:00:00 2001 From: SEONGHYUN HONG Date: Fri, 19 Jun 2026 05:48:27 +0900 Subject: [PATCH] docs: fix duplicated word in foreachref doc comment (#38161) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The Format doc comment read "See See git-for-each-ref(1)" — removed the duplicated "See" (the sibling field comments use a single "See"). Signed-off-by: s3onghyun --- modules/git/foreachref/format.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/git/foreachref/format.go b/modules/git/foreachref/format.go index 87c1c9a4ff..64c9a37a30 100644 --- a/modules/git/foreachref/format.go +++ b/modules/git/foreachref/format.go @@ -16,7 +16,7 @@ var ( ) // Format supports specifying and parsing an output format for 'git -// for-each-ref'. See See git-for-each-ref(1) for available fields. +// for-each-ref'. See git-for-each-ref(1) for available fields. type Format struct { // fieldNames hold %(fieldname)s to be passed to the '--format' flag of // for-each-ref. See git-for-each-ref(1) for available fields.