summaryrefslogtreecommitdiff
path: root/src/lib/fmt.go
diff options
context:
space:
mode:
authorRob Pike <r@golang.org>2008-07-23 20:02:54 -0700
committerRob Pike <r@golang.org>2008-07-23 20:02:54 -0700
commitee9310c20e3d112c2da0344a6be1288ee45f9862 (patch)
treeefbbb8b1cf9ce8b249a9c303218c339c2afe2a97 /src/lib/fmt.go
parent97184bc4573f19f223da144b06fd5a8bf1803b4e (diff)
downloadgolang-ee9310c20e3d112c2da0344a6be1288ee45f9862.tar.gz
Add a flags package.
R=gri OCL=13399 CL=13399
Diffstat (limited to 'src/lib/fmt.go')
-rw-r--r--src/lib/fmt.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/fmt.go b/src/lib/fmt.go
index 668d608d1..a123931e5 100644
--- a/src/lib/fmt.go
+++ b/src/lib/fmt.go
@@ -16,7 +16,7 @@ package fmt
export Fmt, New;
const NByte = 64;
-const NPows10 = 160; // BUG: why not nelem(pows10);
+const NPows10 = 160;
var ldigits string = "0123456789abcdef"; // BUG: Should be const
var udigits string = "0123456789ABCDEF"; // BUG: Should be const