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
6dd7da85
Commit
6dd7da85
authored
Dec 17, 2012
by
Oling Cat
Committed by
David Symonds
Dec 17, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fmt: fix a typo
R=golang-dev, dsymonds CC=golang-dev
https://golang.org/cl/6937065
parent
8c86f1f3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
format.go
src/pkg/fmt/format.go
+1
-1
No files found.
src/pkg/fmt/format.go
View file @
6dd7da85
...
...
@@ -396,7 +396,7 @@ func (f *fmt) fmt_f64(v float64) { f.formatFloat(v, 'f', doPrec(f, 6), 64) }
// fmt_g64 formats a float64 in the 'f' or 'e' form according to size.
func
(
f
*
fmt
)
fmt_g64
(
v
float64
)
{
f
.
formatFloat
(
v
,
'g'
,
doPrec
(
f
,
-
1
),
64
)
}
// fmt_
g
64 formats a float64 in the 'f' or 'E' form according to size.
// fmt_
G
64 formats a float64 in the 'f' or 'E' form according to size.
func
(
f
*
fmt
)
fmt_G64
(
v
float64
)
{
f
.
formatFloat
(
v
,
'G'
,
doPrec
(
f
,
-
1
),
64
)
}
// fmt_fb64 formats a float64 in the form -123p3 (exponent is power of 2).
...
...
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