From 031cb377f3af0e110733c4170f8ca7c5c0862c44 Mon Sep 17 00:00:00 2001 From: Chandra Bhan Singh Date: Mon, 10 Nov 2025 16:30:17 +0800 Subject: [PATCH] docs: correct Markdown formatting for Mono type Signed-off-by: Chandra Bhan Singh --- framework-docs/modules/ROOT/pages/web/webmvc/mvc-ann-async.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework-docs/modules/ROOT/pages/web/webmvc/mvc-ann-async.adoc b/framework-docs/modules/ROOT/pages/web/webmvc/mvc-ann-async.adoc index ea0a9ce87f61..b44f0828ade8 100644 --- a/framework-docs/modules/ROOT/pages/web/webmvc/mvc-ann-async.adoc +++ b/framework-docs/modules/ROOT/pages/web/webmvc/mvc-ann-async.adoc @@ -422,7 +422,7 @@ reactive types from the controller method. Reactive return values are handled as follows: * A single-value promise is adapted to, similar to using `DeferredResult`. Examples -include `CompletionStage` (JDK), Mono` (Reactor), and `Single` (RxJava). +include `CompletionStage` (JDK), `Mono` (Reactor), and `Single` (RxJava). * A multi-value stream with a streaming media type (such as `application/x-ndjson` or `text/event-stream`) is adapted to, similar to using `ResponseBodyEmitter` or `SseEmitter`. Examples include `Flux` (Reactor) or `Observable` (RxJava).