Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
go
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
go
Commits
72fb81ee
Commit
72fb81ee
authored
Feb 19, 2012
by
Marcel van Lohuizen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
doc: Fixed type in documentation for FormatFloat.
R=r, r, rsc CC=golang-dev
https://golang.org/cl/5656108
parent
cf52e39e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
doc/go1.html
doc/go1.html
+1
-1
doc/go1.tmpl
doc/go1.tmpl
+1
-1
No files found.
doc/go1.html
View file @
72fb81ee
...
...
@@ -1705,7 +1705,7 @@ for full details.
<tr>
<td
colspan=
"2"
><hr></td>
</tr>
<tr><td>
Ftoa32(x, f, p)
</td>
<td>
FormatFloat(
x, float64(f)
, p, 32)
</td></tr>
<tr><td>
Ftoa32(x, f, p)
</td>
<td>
FormatFloat(
float64(x), f
, p, 32)
</td></tr>
<tr><td>
Ftoa64(x, f, p)
</td>
<td>
FormatFloat(x, f, p, 64)
</td></tr>
<tr><td>
FtoaN(x, f, p, n)
</td>
<td>
FormatFloat(x, f, p, n)
</td></tr>
<tr>
...
...
doc/go1.tmpl
View file @
72fb81ee
...
...
@@ -1590,7 +1590,7 @@ for full details.
<tr>
<td colspan="2"><hr></td>
</tr>
<tr><td>Ftoa32(x, f, p)</td> <td>FormatFloat(
x, float64(f)
, p, 32)</td></tr>
<tr><td>Ftoa32(x, f, p)</td> <td>FormatFloat(
float64(x), f
, p, 32)</td></tr>
<tr><td>Ftoa64(x, f, p)</td> <td>FormatFloat(x, f, p, 64)</td></tr>
<tr><td>FtoaN(x, f, p, n)</td> <td>FormatFloat(x, f, p, n)</td></tr>
<tr>
...
...
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