Skip to content

Commit d4bfb31

Browse files
committed
fix some ver minor typos
1 parent 70b692c commit d4bfb31

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

hibernate-core/src/main/java/org/hibernate/OrderingMode.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
* The default is {@link #ORDERED}.
2929
*
3030
* @see org.hibernate.Session#findMultiple(Class, List, FindOption...)
31-
* @see org.hibernate.Session#findMultiple(EntityGraph, List , FindOption...)
31+
* @see org.hibernate.Session#findMultiple(EntityGraph, List, FindOption...)
3232
*
3333
* @since 7.2
3434
*/

hibernate-core/src/main/java/org/hibernate/RemovalsMode.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
* The default is {@link #REPLACE}.
1919
*
2020
* @see org.hibernate.Session#findMultiple(Class, List, FindOption...)
21-
* @see org.hibernate.Session#findMultiple(EntityGraph, List , FindOption...)
21+
* @see org.hibernate.Session#findMultiple(EntityGraph, List, FindOption...)
2222
*
2323
* @since 7.2
2424
*/

hibernate-core/src/main/java/org/hibernate/SessionCheckMode.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,16 @@
1313
/**
1414
* Indicates whether the persistence context should be checked for entities
1515
* matching the identifiers to be loaded - <ul>
16-
* <li>Entities which are in a managed state are not re-loaded from the database.
17-
* those identifiers are removed from the SQL restriction sent to the database.
16+
* <li>Entities which are in a managed state are not reloaded from the database.
17+
* Those identifiers are removed from the SQL restriction sent to the database.
1818
* <li>Entities which are in a removed state are {@linkplain RemovalsMode#REPLACE excluded}
1919
* from the result by default, but can be {@linkplain RemovalsMode#INCLUDE included} if desired.
2020
* </ul>
2121
* <p/>
22-
* The default is {@link #DISABLED}
22+
* The default is {@link #DISABLED}.
2323
*
24-
* @see org.hibernate.Session#findMultiple(Class, List , FindOption...)
25-
* @see org.hibernate.Session#findMultiple(EntityGraph, List , FindOption...)
24+
* @see org.hibernate.Session#findMultiple(Class, List, FindOption...)
25+
* @see org.hibernate.Session#findMultiple(EntityGraph, List, FindOption...)
2626
*
2727
* @since 7.2
2828
*/

0 commit comments

Comments
 (0)