From 19c6e50a8c5bd209a98966ff30c33a7c56441f08 Mon Sep 17 00:00:00 2001 From: Abirdcfly Date: Thu, 18 Aug 2022 13:18:11 +0800 Subject: [PATCH] all: remove duplicate "the" words in comments Following CL 424454, using command rg --multiline " the\s{1,}the " * rg --multiline " the\s{1,}//\s{1,}the " * all the words "the" that are repeated in comments are found. Change-Id: I60b769b98f04c927b4c228e10f37faf190964069 Reviewed-on: https://go-review.googlesource.com/c/go/+/423836 Auto-Submit: Filippo Valsorda Reviewed-by: Than McIntosh Run-TryBot: Filippo Valsorda TryBot-Result: Gopher Robot Reviewed-by: Cherry Mui Reviewed-by: Filippo Valsorda --- common.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common.go b/common.go index 1861efc..7d686fd 100644 --- a/common.go +++ b/common.go @@ -725,7 +725,7 @@ type Config struct { // mutex protects sessionTicketKeys and autoSessionTicketKeys. mutex sync.RWMutex - // sessionTicketKeys contains zero or more ticket keys. If set, it means the + // sessionTicketKeys contains zero or more ticket keys. If set, it means // the keys were set with SessionTicketKey or SetSessionTicketKeys. The // first key is used for new tickets and any subsequent keys can be used to // decrypt old tickets. The slice contents are not protected by the mutex