Skip to content

Commit 7f7699b

Browse files
authored
Merge pull request #162 from midnightrun/master
Update expectations.go
2 parents dfdf60c + b03ef5f commit 7f7699b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

expectations.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ func (e *ExpectedPrepare) WillBeClosed() *ExpectedPrepare {
295295
}
296296

297297
// ExpectQuery allows to expect Query() or QueryRow() on this prepared statement.
298-
// this method is convenient in order to prevent duplicating sql query string matching.
298+
// This method is convenient in order to prevent duplicating sql query string matching.
299299
func (e *ExpectedPrepare) ExpectQuery() *ExpectedQuery {
300300
eq := &ExpectedQuery{}
301301
eq.expectSQL = e.expectSQL
@@ -305,7 +305,7 @@ func (e *ExpectedPrepare) ExpectQuery() *ExpectedQuery {
305305
}
306306

307307
// ExpectExec allows to expect Exec() on this prepared statement.
308-
// this method is convenient in order to prevent duplicating sql query string matching.
308+
// This method is convenient in order to prevent duplicating sql query string matching.
309309
func (e *ExpectedPrepare) ExpectExec() *ExpectedExec {
310310
eq := &ExpectedExec{}
311311
eq.expectSQL = e.expectSQL

0 commit comments

Comments
 (0)