Skip to content

Commit 458050d

Browse files
ngocnhan-tran1996schauder
authored andcommitted
Fix typos.
Original pull request #2213 Signed-off-by: Tran Ngoc Nhan <[email protected]>
1 parent db99173 commit 458050d

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

README.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ This will ignore the tests that require an explicit license acceptance.
268268
./mvnw clean install -Pall-dbs,ignore-missing-license
269269
----
270270

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

274274
`db2`, `h2`, `hsql` (default), `mariadb`, `mssql`, `mysql`, `oracle`, `postgres`

spring-data-jdbc/src/main/java/org/springframework/data/jdbc/repository/config/AbstractJdbcConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ protected Collection<String> getMappingBasePackages() {
8484
}
8585

8686
/**
87-
* Returns the a {@link RelationalManagedTypes} object holding the initial entity set.
87+
* Returns a {@link RelationalManagedTypes} object holding the initial entity set.
8888
*
8989
* @return new instance of {@link RelationalManagedTypes}.
9090
* @throws ClassNotFoundException

spring-data-r2dbc/src/main/java/org/springframework/data/r2dbc/config/AbstractR2dbcConfiguration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ protected Collection<String> getMappingBasePackages() {
101101
}
102102

103103
/**
104-
* Returns the a {@link RelationalManagedTypes} object holding the initial entity set.
104+
* Returns a {@link RelationalManagedTypes} object holding the initial entity set.
105105
*
106106
* @return new instance of {@link RelationalManagedTypes}.
107107
* @throws ClassNotFoundException

spring-data-relational/src/main/java/org/springframework/data/relational/core/dialect/IdGeneration.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public String createSequenceQuery(SqlIdentifier sequenceName) {
5252
* <p>
5353
* This should be {@literal false} for most dialects. One notable exception is Oracle.
5454
*
55-
* @return {@literal true} if the a list of column names should get passed to the JDBC driver for which ids shall be
55+
* @return {@literal true} if a list of column names should get passed to the JDBC driver for which ids shall be
5656
* generated.
5757
* @see Connection#prepareStatement(String, String[])
5858
*/

spring-data-relational/src/main/java/org/springframework/data/relational/core/sql/OrderByField.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ public static OrderByField from(Expression expression, Direction direction) {
6767
}
6868

6969
/**
70-
* Creates a new {@link OrderByField} from a the current one using ascending sorting.
70+
* Creates a new {@link OrderByField} from the current one using ascending sorting.
7171
*
7272
* @return the new {@link OrderByField} with ascending sorting.
7373
* @see #desc()
@@ -77,7 +77,7 @@ public OrderByField asc() {
7777
}
7878

7979
/**
80-
* Creates a new {@link OrderByField} from a the current one using descending sorting.
80+
* Creates a new {@link OrderByField} from the current one using descending sorting.
8181
*
8282
* @return the new {@link OrderByField} with descending sorting.
8383
* @see #asc()

0 commit comments

Comments
 (0)