From f4a9b123403e9beb660336c066cf4b212bc368cf Mon Sep 17 00:00:00 2001 From: Suhas Kowligi Date: Mon, 8 Jan 2024 17:09:31 +0530 Subject: [PATCH] Add missing preposition See gh-31977 --- .../pages/web/websocket/stomp/authentication-token-based.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework-docs/modules/ROOT/pages/web/websocket/stomp/authentication-token-based.adoc b/framework-docs/modules/ROOT/pages/web/websocket/stomp/authentication-token-based.adoc index 3bacb4a490..03745ca29b 100644 --- a/framework-docs/modules/ROOT/pages/web/websocket/stomp/authentication-token-based.adoc +++ b/framework-docs/modules/ROOT/pages/web/websocket/stomp/authentication-token-based.adoc @@ -38,7 +38,7 @@ The next example uses server-side configuration to register a custom authenticat interceptor. Note that an interceptor needs only to authenticate and set the user header on the CONNECT `Message`. Spring notes and saves the authenticated user and associate it with subsequent STOMP messages on the same session. The following -example shows how register a custom authentication interceptor: +example shows how to register a custom authentication interceptor: [source,java,indent=0,subs="verbatim,quotes"] ----