Skip to content

Commit

Permalink
clean up comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Luigi Kapaj authored and Luigi Kapaj committed Apr 7, 2015
1 parent ac2ec3e commit 1211152
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion godrv/driver.go
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ func (c conn) parseQuery(query string, args []driver.Value) (string, error) {
case float64:
s = strconv.FormatFloat(v, 'e', 12, 64)
default:
panic(fmt.Sprintf("%v (%T) can't be handled by godrv", a, v)) // TODO: push upstream
panic(fmt.Sprintf("%v (%T) can't be handled by godrv", a, v))
}
q[n] = query[:i]
q[n+1] = s
Expand Down

0 comments on commit 1211152

Please sign in to comment.