1
0
mirror of https://github.com/DATA-DOG/go-sqlmock.git synced 2024-12-12 10:13:36 +02:00

Merge pull request #87 from whiteheadrj/master

Fixed GoDoc spelling error
This commit is contained in:
Gediminas Morkevicius 2017-08-03 09:15:24 +03:00 committed by GitHub
commit c91a7f4b68

View File

@ -265,7 +265,7 @@ func (e *ExpectedPrepare) WillReturnError(err error) *ExpectedPrepare {
return e
}
// WillReturnCloseError allows to set an error for this prapared statement Close action
// WillReturnCloseError allows to set an error for this prepared statement Close action
func (e *ExpectedPrepare) WillReturnCloseError(err error) *ExpectedPrepare {
e.closeErr = err
return e