Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ This will ignore the tests that require an explicit license acceptance.
./mvnw clean install -Pall-dbs,ignore-missing-license
----

If you want to run an integration tests against a different database you can do so by activating an apropriate Spring Profile.
If you want to run an integration tests against a different database you can do so by activating an appropriate Spring Profile.
Available are the following Spring Profiles:

`db2`, `h2`, `hsql` (default), `mariadb`, `mssql`, `mysql`, `oracle`, `postgres`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ protected Collection<String> getMappingBasePackages() {
}

/**
* Returns the a {@link RelationalManagedTypes} object holding the initial entity set.
* Returns a {@link RelationalManagedTypes} object holding the initial entity set.
*
* @return new instance of {@link RelationalManagedTypes}.
* @throws ClassNotFoundException
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ protected Collection<String> getMappingBasePackages() {
}

/**
* Returns the a {@link RelationalManagedTypes} object holding the initial entity set.
* Returns a {@link RelationalManagedTypes} object holding the initial entity set.
*
* @return new instance of {@link RelationalManagedTypes}.
* @throws ClassNotFoundException
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public String createSequenceQuery(SqlIdentifier sequenceName) {
* <p>
* This should be {@literal false} for most dialects. One notable exception is Oracle.
*
* @return {@literal true} if the a list of column names should get passed to the JDBC driver for which ids shall be
* @return {@literal true} if a list of column names should get passed to the JDBC driver for which ids shall be
* generated.
* @see Connection#prepareStatement(String, String[])
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public static OrderByField from(Expression expression, Direction direction) {
}

/**
* Creates a new {@link OrderByField} from a the current one using ascending sorting.
* Creates a new {@link OrderByField} from the current one using ascending sorting.
*
* @return the new {@link OrderByField} with ascending sorting.
* @see #desc()
Expand All @@ -77,7 +77,7 @@ public OrderByField asc() {
}

/**
* Creates a new {@link OrderByField} from a the current one using descending sorting.
* Creates a new {@link OrderByField} from the current one using descending sorting.
*
* @return the new {@link OrderByField} with descending sorting.
* @see #asc()
Expand Down
Loading