Skip to content

Commit 4a4793d

Browse files
ngocnhan-tran1996mp911de
authored andcommitted
Fix typos in Javadoc.
Signed-off-by: Tran Ngoc Nhan <[email protected]> Closes #3440
1 parent 52d7d95 commit 4a4793d

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

CI.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ image:https://jenkins.spring.io/buildStatus/icon?job=spring-data-commons%2F1.13.
99
Since this pipeline is purely Docker-based, it's easy to:
1010

1111
* Debug what went wrong on your local machine.
12-
* Test out a a tweak to your `test.sh` script before sending it out.
12+
* Test out a tweak to your `test.sh` script before sending it out.
1313
* Experiment against a new image before submitting your pull request.
1414

1515
All of these use cases are great reasons to essentially run what the CI server does on your local machine.

src/main/java/org/springframework/data/mapping/model/InstantiationAwarePropertyAccessor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
* A {@link PersistentPropertyAccessor} that will use an entity's
3131
* {@link org.springframework.data.annotation.PersistenceCreator} to create a new instance of it to apply a new value
3232
* for a given {@link PersistentProperty}. Will only be used if the {@link PersistentProperty} is to be applied on a
33-
* completely immutable entity type exposing a entity creator.
33+
* completely immutable entity type exposing an entity creator.
3434
*
3535
* @author Oliver Drotbohm
3636
* @author Mark Paluch

src/main/java/org/springframework/data/projection/ProjectingMethodInterceptor.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ private Object projectCollectionElements(Collection<?> sources, TypeInformation<
143143
}
144144

145145
/**
146-
* Creates projections of the given {@link Map}'s values if necessary and returns an new {@link Map} with the handled
146+
* Creates projections of the given {@link Map}'s values if necessary and returns a new {@link Map} with the handled
147147
* values.
148148
*
149149
* @param sources must not be {@literal null}.
@@ -168,7 +168,7 @@ private Map<Object, Object> projectMapValues(Map<?, ?> sources, TypeInformation<
168168
}
169169

170170
/**
171-
* Turns the given value into a {@link Collection}. Will turn an array into a collection an wrap all other values into
171+
* Turns the given value into a {@link Collection}. Will turn an array into a collection a wrap all other values into
172172
* a single-element collection.
173173
*
174174
* @param source must not be {@literal null}.

src/main/java/org/springframework/data/querydsl/EntityPathResolver.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
import com.querydsl.core.types.EntityPath;
1919

2020
/**
21-
* Strategy interface to abstract the ways to translate an plain domain class into a {@link EntityPath}.
21+
* Strategy interface to abstract the ways to translate a plain domain class into a {@link EntityPath}.
2222
*
2323
* @author Oliver Gierke
2424
*/

src/main/java/org/springframework/data/repository/cdi/CdiRepositoryBean.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ public String getId() {
291291

292292
/**
293293
* Creates the actual component instance given a {@link RepositoryFactorySupport repository factory supplier} and the
294-
* repository {@link Class type}. This method is an utility for to create a repository. This method will obtain a
294+
* repository {@link Class type}. This method is a utility for to create a repository. This method will obtain a
295295
* {@link RepositoryFactorySupport repository factory} and configure it with {@link CdiRepositoryConfiguration}.
296296
*
297297
* @param factorySupplier must not be {@literal null}.

src/main/java/org/springframework/data/repository/cdi/CdiRepositoryExtensionSupport.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ protected CdiRepositoryExtensionSupport() {
6666
}
6767

6868
/**
69-
* Implementation of a an observer which checks for Spring Data repository types and stores them in
69+
* Implementation of an observer which checks for Spring Data repository types and stores them in
7070
* {@link #repositoryTypes} for later registration as bean type.
7171
*
7272
* @param <X> The type.

src/main/java/org/springframework/data/repository/config/RepositoryConfigurationExtensionSupport.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ public static boolean hasBean(Class<?> type, BeanDefinitionRegistry registry) {
251251
}
252252

253253
/**
254-
* Creates a actual {@link RepositoryConfiguration} instance for the given {@link RepositoryConfigurationSource} and
254+
* Creates an actual {@link RepositoryConfiguration} instance for the given {@link RepositoryConfigurationSource} and
255255
* interface name. Defaults to the {@link DefaultRepositoryConfiguration} but allows sub-classes to override this to
256256
* customize the behavior.
257257
*

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -545,7 +545,7 @@ public <T, ID> EntityInformation<T, ID> getEntityInformation(Class<T> domainClas
545545
}
546546

547547
/**
548-
* Create a instance of the repository base class providing store-specific built-in repository functionality of a
548+
* Create an instance of the repository base class providing store-specific built-in repository functionality of a
549549
* typical {@code CrudRepository}.
550550
*
551551
* @param metadata repository metadata.

0 commit comments

Comments
 (0)