summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorEvan Shaw <chickencha@gmail.com>2010-05-25 18:24:07 -0700
committerEvan Shaw <chickencha@gmail.com>2010-05-25 18:24:07 -0700
commit19421f5355e7064971d3aead311a0a079b2ada73 (patch)
tree5505a476dca998bd7f63000e1456143563de6e48 /doc
parentdf163ccd3cefb0222976dc86dd35cdb060121f9d (diff)
downloadgolang-19421f5355e7064971d3aead311a0a079b2ada73.tar.gz
spec: Fix link to fallthrough statements
R=golang-dev, gri CC=golang-dev http://codereview.appspot.com/1303041 Committer: Robert Griesemer <gri@golang.org>
Diffstat (limited to 'doc')
-rw-r--r--doc/go_spec.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/go_spec.html b/doc/go_spec.html
index d56efcc2b..aad1f34dd 100644
--- a/doc/go_spec.html
+++ b/doc/go_spec.html
@@ -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.