Skip to content

Commit 02e9477

Browse files
committed
Merge pull request #1129 from kduhyun:fix-doc1
* pr/1129: Fix typo
2 parents fae503d + a3062df commit 02e9477

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

spring-context-support/src/main/java/org/springframework/cache/jcache/interceptor/AbstractCacheInterceptor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ protected Cache resolveCache(CacheOperationInvocationContext<O> context) {
6969
/**
7070
* Convert the collection of caches in a single expected element.
7171
* <p>Throw an {@link IllegalStateException} if the collection holds more than one element
72-
* @return the singe element or {@code null} if the collection is empty
72+
* @return the single element or {@code null} if the collection is empty
7373
*/
7474
static Cache extractFrom(Collection<? extends Cache> caches) {
7575
if (CollectionUtils.isEmpty(caches)) {

src/asciidoc/web-reactive.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ Similarly a controller can also an `@ResponseBody` return value
9898
in any one of the following ways:
9999

100100
* `Mono<Account>` -- serialize without blocking the given Account when the `Mono` completes.
101-
* `Singe<Account>` -- same but using RxJava.
101+
* `Single<Account>` -- same but using RxJava.
102102
* `Flux<Account>` -- streaming scenario, possibly SSE depending on the requested content type.
103103
* `Flux<SseEvent>` -- SSE streaming.
104104
* `Observable<SseEvent>` -- same but using RxJava.

0 commit comments

Comments
 (0)