File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -295,7 +295,7 @@ func (e *ExpectedPrepare) WillBeClosed() *ExpectedPrepare {
295
295
}
296
296
297
297
// 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.
299
299
func (e * ExpectedPrepare ) ExpectQuery () * ExpectedQuery {
300
300
eq := & ExpectedQuery {}
301
301
eq .expectSQL = e .expectSQL
@@ -305,7 +305,7 @@ func (e *ExpectedPrepare) ExpectQuery() *ExpectedQuery {
305
305
}
306
306
307
307
// 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.
309
309
func (e * ExpectedPrepare ) ExpectExec () * ExpectedExec {
310
310
eq := & ExpectedExec {}
311
311
eq .expectSQL = e .expectSQL
You can’t perform that action at this time.
0 commit comments