diff options
author | Ian Lance Taylor <ian@gcc.gnu.org> | 2013-11-27 01:05:38 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@gcc.gnu.org> | 2013-11-27 01:05:38 +0000 |
commit | 815ca4d336e254a4869946343460afc8ff6b21c7 (patch) | |
tree | a639e5c4b06bb7971b24112a25fdae25a1b3d863 /libgo/go/database/sql/driver | |
parent | 40a373f1d56a77524d9047ab66176b9d2a82cb57 (diff) | |
download | gcc-815ca4d336e254a4869946343460afc8ff6b21c7.tar.gz |
libgo: Update to current Go library.
From-SVN: r205426
Diffstat (limited to 'libgo/go/database/sql/driver')
-rw-r--r-- | libgo/go/database/sql/driver/driver.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libgo/go/database/sql/driver/driver.go b/libgo/go/database/sql/driver/driver.go index d7ca94f7809..0828e63c656 100644 --- a/libgo/go/database/sql/driver/driver.go +++ b/libgo/go/database/sql/driver/driver.go @@ -140,8 +140,8 @@ type Stmt interface { } // ColumnConverter may be optionally implemented by Stmt if the -// the statement is aware of its own columns' types and can -// convert from any type to a driver Value. +// statement is aware of its own columns' types and can convert from +// any type to a driver Value. type ColumnConverter interface { // ColumnConverter returns a ValueConverter for the provided // column index. If the type of a specific column isn't known |