Skip to content

Commit

Permalink
[hibernate#1338] Fix typos in comments and javadocs
Browse files Browse the repository at this point in the history
  • Loading branch information
DavideD authored and blafond committed Jun 14, 2022
1 parent 56814e1 commit 4d1df78
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -401,7 +401,7 @@ default CompletionStage<Serializable> insertReactive(
return getReactiveConnection( session )
//Note: in ORM core there are other ways to fetch the generated identity:
// getGeneratedKeys(), or an extra round select statement. But we
// don't need these extra options.
// don't need those extra options.
.insertAndSelectIdentifier( sql, params, idClass, delegate().getIdentifierColumnNames()[0] )
.thenApply( this::convertGeneratedId );
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ protected Collection<Class<?>> annotatedEntities() {
@Override
protected Configuration constructConfiguration() {
Configuration configuration = super.constructConfiguration();
// It's the default but I want to highlight what we are testing
// It's the default, but I want to highlight what we are testing
configuration.setProperty( AvailableSettings.USE_GET_GENERATED_KEYS, "false" );
return configuration;
}
Expand Down

0 comments on commit 4d1df78

Please sign in to comment.