From: Mark Freeman Date: Mon, 5 May 2025 20:39:11 +0000 (-0400) Subject: spec: avoid use of "raise" in conjunction with panics X-Git-Tag: go1.25rc1~356 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=66ea0ee409df5a025296d7dac8bb3dc1ec0d2b90;p=gostls13.git spec: avoid use of "raise" in conjunction with panics For #73526 Change-Id: I06d8ae9080695745db68a51635faa0b244c1760e Reviewed-on: https://go-review.googlesource.com/c/go/+/670155 Reviewed-by: Robert Griesemer LUCI-TryBot-Result: Go LUCI Reviewed-by: Mark Freeman Auto-Submit: Mark Freeman --- diff --git a/doc/go_spec.html b/doc/go_spec.html index 479605e36c..183bc7fb37 100644 --- a/doc/go_spec.html +++ b/doc/go_spec.html @@ -7894,7 +7894,7 @@ causes a run-time panic.

The protect function in the example below invokes the function argument g and protects callers from -run-time panics raised by g. +run-time panics caused by g.