From: Evan Shaw Date: Wed, 26 May 2010 01:24:07 +0000 (-0700) Subject: spec: Fix link to fallthrough statements X-Git-Tag: weekly.2010-05-27~9 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=67d30bb696fd28477ec023926b0ead375cf8371e;p=gostls13.git spec: Fix link to fallthrough statements R=golang-dev, gri CC=golang-dev https://golang.org/cl/1303041 --- diff --git a/doc/go_spec.html b/doc/go_spec.html index d56efcc2bc..aad1f34dd6 100644 --- a/doc/go_spec.html +++ b/doc/go_spec.html @@ -3771,7 +3771,7 @@ ExprSwitchCase = "case" ExpressionList | "default" .

In a case or default clause, the last statement only may be a "fallthrough" statement -(§Fallthrough statement) to +(§Fallthrough statement) to indicate that control should flow from the end of this clause to the first statement of the next clause. Otherwise control flows to the end of the "switch" statement.