We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e66fe91 commit 84c1375Copy full SHA for 84c1375
src/main/java/org/apache/ibatis/executor/resultset/DefaultResultSetHandler.java
@@ -261,7 +261,7 @@ private ResultSetWrapper getNextResultSet(Statement stmt) {
261
try {
262
if (stmt.getConnection().getMetaData().supportsMultipleResultSets()) {
263
// Crazy Standard JDBC way of determining if there are more results
264
- // DO NOT try to 'imporove' the condition even if IDE tells you to!
+ // DO NOT try to 'improve' the condition even if IDE tells you to!
265
// It's important that getUpdateCount() is called here.
266
if (!(!stmt.getMoreResults() && stmt.getUpdateCount() == -1)) {
267
ResultSet rs = stmt.getResultSet();
0 commit comments