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 {
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.
299299func (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.
309309func (e * ExpectedPrepare ) ExpectExec () * ExpectedExec {
310310 eq := & ExpectedExec {}
311311 eq .expectSQL = e .expectSQL
You can’t perform that action at this time.
0 commit comments