diff options
| author | Shenghou Ma <minux.ma@gmail.com> | 2012-01-14 10:59:45 -0800 |
|---|---|---|
| committer | Rob Pike <r@golang.org> | 2012-01-14 10:59:45 -0800 |
| commit | 4cfa9e3c616ee9ffd688adc7caffa76bfd7ee312 (patch) | |
| tree | 5b5d3c357062eb84a082ebcde5ff66c06b5c0010 /src/pkg/exp/sql/driver | |
| parent | 6b72b070166c94f386cdaeea7bc762cdcf277bd3 (diff) | |
| download | go-4cfa9e3c616ee9ffd688adc7caffa76bfd7ee312.tar.xz | |
doc: fix comments referring to removed API funcs
The strconv package has removed Atob, AtoF{64,32} and Ftoa.
R=golang-dev, r
CC=golang-dev
https://golang.org/cl/5540057
Diffstat (limited to 'src/pkg/exp/sql/driver')
| -rw-r--r-- | src/pkg/exp/sql/driver/types.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pkg/exp/sql/driver/types.go b/src/pkg/exp/sql/driver/types.go index 0ee278856d..d6ba641cb2 100644 --- a/src/pkg/exp/sql/driver/types.go +++ b/src/pkg/exp/sql/driver/types.go @@ -40,7 +40,7 @@ type ValueConverter interface { // 1 is true // 0 is false, // other integers are an error -// - for strings and []byte, same rules as strconv.Atob +// - for strings and []byte, same rules as strconv.ParseBool // - all other types are an error var Bool boolType |
