Skip to content

Commit 37fa65f

Browse files
committed
Documentation
1 parent 6315e94 commit 37fa65f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: src/main/java/org/mybatis/dynamic/sql/util/mybatis3/CommonSelectMapper.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ public interface CommonSelectMapper {
5050
/**
5151
* Select a single row as a Map of values. The row may have any number of columns.
5252
* The Map key will be the column name as returned from the
53-
* database (may be aliased if an alias is specified in the select statement). Map entries will be
53+
* database (the key will be aliased if an alias is specified in the select statement). Map entries will be
5454
* of data types determined by the JDBC driver. MyBatis will call ResultSet.getObject() to retrieve
5555
* values from the ResultSet. Reference your JDBC driver documentation to learn about type mappings
5656
* for your specific database.
@@ -85,7 +85,7 @@ public interface CommonSelectMapper {
8585
* Select any number of rows and return a List of Maps containing row values (one Map for each row returned).
8686
* The rows may have any number of columns.
8787
* The Map key will be the column name as returned from the
88-
* database (may be aliased if an alias is specified in the select statement). Map entries will be
88+
* database (the key will be aliased if an alias is specified in the select statement). Map entries will be
8989
* of data types determined by the JDBC driver. MyBatis will call ResultSet.getObject() to retrieve
9090
* values from the ResultSet. Reference your JDBC driver documentation to learn about type mappings
9191
* for your specific database.

0 commit comments

Comments
 (0)