1
0
mirror of https://github.com/golang/go synced 2024-11-17 00:14:50 -07:00

could -> would

This commit is contained in:
Irakli Safareli 2023-12-18 12:50:06 +04:00 committed by GitHub
parent b8e17e7097
commit c773abb75c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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