2
0

Fix some typos

This commit is contained in:
ferhat elmas
2019-09-04 12:46:50 +02:00
parent be8ed87408
commit 912b2fcc3a
3 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -36,7 +36,7 @@ type BatchResults interface {
// QueryRow reads the results from the next query in the batch as if the query has been sent with Conn.QueryRow.
QueryRow() Row
// Close closes the batch operation. Any error that occured during a batch operation may have made it impossible to
// Close closes the batch operation. Any error that occurred during a batch operation may have made it impossible to
// resyncronize the connection with the server. In this case the underlying connection will have been closed.
Close() error
}
@@ -95,7 +95,7 @@ func (br *batchResults) QueryRow() Row {
}
// Close closes the batch operation. Any error that occured during a batch operation may have made it impossible to
// Close closes the batch operation. Any error that occurred during a batch operation may have made it impossible to
// resyncronize the connection with the server. In this case the underlying connection will have been closed.
func (br *batchResults) Close() error {
if br.err != nil {