]> Cypherpunks repositories - gostls13.git/commitdiff
spec: Fix link to fallthrough statements
authorEvan Shaw <chickencha@gmail.com>
Wed, 26 May 2010 01:24:07 +0000 (18:24 -0700)
committerRobert Griesemer <gri@golang.org>
Wed, 26 May 2010 01:24:07 +0000 (18:24 -0700)
R=golang-dev, gri
CC=golang-dev
https://golang.org/cl/1303041

doc/go_spec.html

index d56efcc2bc21b8a4d3e9a4eeeb9a45f23a88be12..aad1f34dd6e0e73a83dd1f34d8ddd1611b8ce7bc 100644 (file)
@@ -3771,7 +3771,7 @@ ExprSwitchCase = "case" ExpressionList | "default" .
 <p>
 In a case or default clause,
 the last statement only may be a "fallthrough" statement
-(§<a href="#Fallthrough_statement">Fallthrough statement</a>) to
+(§<a href="#Fallthrough_statements">Fallthrough statement</a>) 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.