diff options
author | Evan Shaw <chickencha@gmail.com> | 2010-04-22 10:14:53 -0700 |
---|---|---|
committer | Evan Shaw <chickencha@gmail.com> | 2010-04-22 10:14:53 -0700 |
commit | b10f88c90200aa12fd0f9ef006919714456d211e (patch) | |
tree | ded93a23a6954e51489d82ca180a6eda34a1ca3d | |
parent | 290a00cb1fd8823b727aeeaadf9cba7e1e7a39d3 (diff) | |
download | golang-b10f88c90200aa12fd0f9ef006919714456d211e.tar.gz |
spec: Fix run-time panic header id
Everything was linking to "Run_time_panics", but the id was "Run_time_errors".
R=golang-dev, r
CC=golang-dev
http://codereview.appspot.com/961042
Committer: Rob Pike <r@golang.org>
-rw-r--r-- | doc/go_spec.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/go_spec.html b/doc/go_spec.html index 7bc175adc..26fc74969 100644 --- a/doc/go_spec.html +++ b/doc/go_spec.html @@ -4972,7 +4972,7 @@ Implementation restriction: The compiler assumes package <code>main</code> is not imported by any other package. </p> -<h2 id="Run_time_errors">Run-time panics</h2> +<h2 id="Run_time_panics">Run-time panics</h2> <p> Execution errors such as attempting to index an array out |