Skip to content

Commit ff377a3

Browse files
committed
Minor typo in docs
1 parent ddb2bdf commit ff377a3

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/asciidoc/core-expressions.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ By default, the `create()` static factory method enables only read access to pro
201201
You can also obtain a builder to configure the exact level of support needed, targeting
202202
one of, or some combination of the following:
203203

204-
. Custom {@code PropertyAccessor} only (no reflection).
204+
. Custom `PropertyAccessor` only (no reflection).
205205
. Data binding properties for read-only access.
206206
. Data binding properties for read and write.
207207

src/asciidoc/web-websocket.adoc

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1468,7 +1468,7 @@ subscription messages only.
14681468
An `@SubscribeMapping` method is generally no different from any `@MessageMapping`
14691469
method with respect to mapping and input arguments. For example you can combine it with a
14701470
type-level `@MessageMapping` to express a shared destination prefix, and you can use the
1471-
same <<websocket-stomp-message-mapping,method arguments>> as on any @MessageMapping` method.
1471+
same <<websocket-stomp-message-mapping,method arguments>> as any @MessageMapping` method.
14721472

14731473
The key difference with `@SubscribeMapping` is that the return value of the method is
14741474
serialized as a payload and sent, not to the "brokerChannel" but to the
@@ -1506,7 +1506,8 @@ itself, or through a method argument if you want to get access to the exception
15061506
----
15071507

15081508
`@MessageExceptionHandler` methods support flexible method signatures and support the same
1509-
method argument types and return values as <<websocket-stomp-message-mapping>> methods.
1509+
method argument types and return values as
1510+
<<websocket-stomp-message-mapping,@MessageMapping>> methods.
15101511

15111512
Typically `@MessageExceptionHandler` methods apply within the `@Controller` class (or
15121513
class hierarchy) they are declared in. If you want such methods to apply more globally,

0 commit comments

Comments
 (0)