Skip to content

Commit d3cfccd

Browse files
committed
Fix typos.
1 parent ae6fa74 commit d3cfccd

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

src/main/antora/modules/ROOT/pages/entity-callbacks.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public interface BeforeSaveCallback<T> extends EntityCallback<T> {
4040
String collection); // <3>
4141
}
4242
----
43-
<1> `BeforeSaveCallback` specific method to be called before an entity is saved. Returns a potentially modifed instance.
43+
<1> `BeforeSaveCallback` specific method to be called before an entity is saved. Returns a potentially modified instance.
4444
<2> The entity right before persisting.
4545
<3> A number of store specific arguments like the _collection_ the entity is persisted to.
4646

src/main/antora/modules/ROOT/pages/object-mapping.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ class Person {
103103
}
104104
105105
Person withId(Long id) {
106-
return new Person(id, this.firstname, this.lastame);
106+
return new Person(id, this.firstname, this.lastname);
107107
}
108108
109109
void setLastname(String lastname) {

src/main/antora/modules/ROOT/pages/repositories/scrolling.adoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,9 @@ WindowIterator<User> users = WindowIterator.of(position -> repository.findFirst1
7676

7777
[CAUTION]
7878
====
79-
There is a difference between `ScollPosition.offset()` and `ScollPosition.offset(0L)`.
79+
There is a difference between `ScrollPosition.offset()` and `ScrollPosition.offset(0L)`.
8080
The former indicates the start of scroll operation, pointing to no specific offset whereas the latter identifies the first element (at position `0`) of the result.
81-
Given the _exclusive_ nature of scrolling, using `ScollPosition.offset(0)` skips the first element and translate to an offset of `1`.
81+
Given the _exclusive_ nature of scrolling, using `ScrollPosition.offset(0)` skips the first element and translate to an offset of `1`.
8282
====
8383

8484
[[repositories.scrolling.keyset]]

src/main/java/org/springframework/data/mapping/Alias.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ public boolean hasValue(Object that) {
104104
}
105105

106106
/**
107-
* Returns whether the the current alias is present and has the same value as the given {@link Alias}.
107+
* Returns whether the current alias is present and has the same value as the given {@link Alias}.
108108
*
109109
* @param other the other {@link Alias}
110110
* @return {@literal true} if there's an alias value present and its equal to the one in the given {@link Alias}.

src/main/java/org/springframework/data/repository/core/support/TransactionalRepositoryProxyPostProcessor.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ public void postProcess(ProxyFactory factory, RepositoryInformation repositoryIn
8080
}
8181

8282
/**
83-
* Custom implementation of {@link AnnotationTransactionAttributeSource} that that slightly modify the algorithm
83+
* Custom implementation of {@link AnnotationTransactionAttributeSource} that slightly modify the algorithm
8484
* transaction configuration is discovered.
8585
* <p>
8686
* The original Spring implementation favors the implementation class' transaction configuration over one declared at

src/main/java/org/springframework/data/repository/query/parser/Part.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ public Collection<String> getKeywords() {
253253
}
254254

255255
/**
256-
* Returns whether the the type supports the given raw property. Default implementation checks whether the property
256+
* Returns whether the type supports the given raw property. Default implementation checks whether the property
257257
* ends with the registered keyword. Does not support the keyword if the property is a valid field as is.
258258
*
259259
* @param property

0 commit comments

Comments
 (0)