Skip to content

Commit b1cfb84

Browse files
committed
Fix to use correct method name at JavaDoc
See gh-1279
1 parent cf0a588 commit b1cfb84

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/main/java/org/apache/ibatis/annotations/DeleteProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
* </li>
5050
* <li>
5151
* If cannot resolve a method by {@link org.apache.ibatis.builder.annotation.ProviderMethodResolver}(= not implement it or it was returned {@code null}),
52-
* the MyBatis will search and use a fallback method that named {@code resolveSql} from specified type
52+
* the MyBatis will search and use a fallback method that named {@code provideSql} from specified type
5353
* </li>
5454
* </ul>
5555
*

src/main/java/org/apache/ibatis/annotations/InsertProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
* </li>
5050
* <li>
5151
* If cannot resolve a method by {@link org.apache.ibatis.builder.annotation.ProviderMethodResolver}(= not implement it or it was returned {@code null}),
52-
* the MyBatis will search and use a fallback method that named {@code resolveSql} from specified type
52+
* the MyBatis will search and use a fallback method that named {@code provideSql} from specified type
5353
* </li>
5454
* </ul>
5555
*

src/main/java/org/apache/ibatis/annotations/SelectProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
* </li>
5050
* <li>
5151
* If cannot resolve a method by {@link org.apache.ibatis.builder.annotation.ProviderMethodResolver}(= not implement it or it was returned {@code null}),
52-
* the MyBatis will search and use a fallback method that named {@code resolveSql} from specified type
52+
* the MyBatis will search and use a fallback method that named {@code provideSql} from specified type
5353
* </li>
5454
* </ul>
5555
*

src/main/java/org/apache/ibatis/annotations/UpdateProvider.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
* </li>
5050
* <li>
5151
* If cannot resolve a method by {@link org.apache.ibatis.builder.annotation.ProviderMethodResolver}(= not implement it or it was returned {@code null}),
52-
* the MyBatis will search and use a fallback method that named {@code resolveSql} from specified type
52+
* the MyBatis will search and use a fallback method that named {@code provideSql} from specified type
5353
* </li>
5454
* </ul>
5555
*

0 commit comments

Comments
 (0)