From 52345c56a7d66852ceb9ff03f5a184cd83bc1ad8 Mon Sep 17 00:00:00 2001 From: jun Date: Sun, 15 Mar 2026 23:17:09 +0900 Subject: [PATCH] Fix typo in StompSession Javadoc Closes gh-36469 Signed-off-by: jun (cherry picked from commit c2c6130da597c34b58313ae71e38a818435b4e77) --- .../org/springframework/messaging/simp/stomp/StompSession.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-messaging/src/main/java/org/springframework/messaging/simp/stomp/StompSession.java b/spring-messaging/src/main/java/org/springframework/messaging/simp/stomp/StompSession.java index 9851e26d3a1..91c0ca906bc 100644 --- a/spring-messaging/src/main/java/org/springframework/messaging/simp/stomp/StompSession.java +++ b/spring-messaging/src/main/java/org/springframework/messaging/simp/stomp/StompSession.java @@ -95,7 +95,7 @@ public interface StompSession { * in an ACK or NACK frame respectively. *

Note: to use this when subscribing you must set the * {@link StompHeaders#setAck(String) ack} header to "client" or - * "client-individual" in order ot use this. + * "client-individual" in order to use this. * @param messageId the id of the message * @param consumed whether the message was consumed or not * @return a Receiptable for tracking receipts