From c773abb75c8cd8e08c3470f064a3205573156fea Mon Sep 17 00:00:00 2001 From: Irakli Safareli Date: Mon, 18 Dec 2023 12:50:06 +0400 Subject: [PATCH] could -> would --- src/builtin/builtin.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/builtin/builtin.go b/src/builtin/builtin.go index f840353544..668c799ca7 100644 --- a/src/builtin/builtin.go +++ b/src/builtin/builtin.go @@ -286,7 +286,7 @@ func panic(v any) // not stop a panicking sequence. In this case, or when the goroutine is not // panicking, recover returns nil. // -// Prior to Go 1.21, recover could also return nil if panic is called with +// Prior to Go 1.21, recover would also return nil if panic is called with // a nil argument. See [panic] for details. func recover() any