Skip to content

Commit 84c1375

Browse files
committed
[ci] Fix spelling mistake
1 parent e66fe91 commit 84c1375

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/apache/ibatis/executor/resultset/DefaultResultSetHandler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -261,7 +261,7 @@ private ResultSetWrapper getNextResultSet(Statement stmt) {
261261
try {
262262
if (stmt.getConnection().getMetaData().supportsMultipleResultSets()) {
263263
// 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!
264+
// DO NOT try to 'improve' the condition even if IDE tells you to!
265265
// It's important that getUpdateCount() is called here.
266266
if (!(!stmt.getMoreResults() && stmt.getUpdateCount() == -1)) {
267267
ResultSet rs = stmt.getResultSet();

0 commit comments

Comments
 (0)