Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
G
golang
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
golang
Commits
9a358df9
Commit
9a358df9
authored
Dec 09, 2011
by
Charles L. Dorian
Committed by
Russ Cox
Dec 09, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
spec: fix typo in example comment
R=rsc, golang-dev CC=golang-dev
https://golang.org/cl/5475046
parent
a250f37c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
go_spec.html
doc/go_spec.html
+2
-2
No files found.
doc/go_spec.html
View file @
9a358df9
...
@@ -3458,7 +3458,7 @@ an untyped complex constant.
...
@@ -3458,7 +3458,7 @@ an untyped complex constant.
</p>
</p>
<pre>
<pre>
const ic = complex(0, c) // i
Γ
== 3.75i (untyped complex constant)
const ic = complex(0, c) // i
c
== 3.75i (untyped complex constant)
const iΘ = complex(0, Θ) // iΘ == 1.5i (type complex128)
const iΘ = complex(0, Θ) // iΘ == 1.5i (type complex128)
</pre>
</pre>
...
@@ -5200,7 +5200,7 @@ Execution errors such as attempting to index an array out
...
@@ -5200,7 +5200,7 @@ Execution errors such as attempting to index an array out
of bounds trigger a
<i>
run-time panic
</i>
equivalent to a call of
of bounds trigger a
<i>
run-time panic
</i>
equivalent to a call of
the built-in function
<a
href=
"#Handling_panics"
><code>
panic
</code></a>
the built-in function
<a
href=
"#Handling_panics"
><code>
panic
</code></a>
with a value of the implementation-defined interface type
<code>
runtime.Error
</code>
.
with a value of the implementation-defined interface type
<code>
runtime.Error
</code>
.
That type satisfies the predeclared interface type
That type satisfies the predeclared interface type
<a
href=
"#Errors"
><code>
error
</code></a>
.
<a
href=
"#Errors"
><code>
error
</code></a>
.
The exact error values that
The exact error values that
represent distinct run-time error conditions are unspecified.
represent distinct run-time error conditions are unspecified.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment