diff options
| author | Rob Pike <r@golang.org> | 2009-04-17 00:08:24 -0700 |
|---|---|---|
| committer | Rob Pike <r@golang.org> | 2009-04-17 00:08:24 -0700 |
| commit | aaf63f8d06cda8308eb7c47ebc1f2cf2c1c91d02 (patch) | |
| tree | c20f34ec6f9dea967a511f65b239c5e8637fec8f /src/lib/json | |
| parent | 3ea8d854a3a0b7f812d8590d4d1c3c2671288b60 (diff) | |
| download | go-aaf63f8d06cda8308eb7c47ebc1f2cf2c1c91d02.tar.xz | |
Step 1 of the Big Error Shift: make os.Error an interface and replace *os.Errors with os.Errors.
lib/template updated to use new setup; its clients also updated.
Step 2 will make os's error support internally much cleaner.
R=rsc
OCL=27586
CL=27586
Diffstat (limited to 'src/lib/json')
| -rw-r--r-- | src/lib/json/generic.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/json/generic.go b/src/lib/json/generic.go index 8801f7631c..4393e4d080 100644 --- a/src/lib/json/generic.go +++ b/src/lib/json/generic.go @@ -327,4 +327,4 @@ func StringToJson(s string) (json Json, ok bool, errtok string) { return j, true, "" } -// BUG(rsc): StringToJson should return an *os.Error instead of a bool. +// BUG(rsc): StringToJson should return an os.Error instead of a bool. |
