From 234f6c954ade3a6d0e2ba9285044f4209d6a40c3 Mon Sep 17 00:00:00 2001
From: Johnny Lim
Date: Tue, 19 Apr 2016 13:27:48 +0900
Subject: [PATCH] Remove duplicate words
Remove duplicate words
Fixes gh-494
---
docs/src/docs/asciidoc/guides/rest.adoc | 2 +-
.../AbstractSessionWebSocketMessageBrokerConfigurer.java | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/docs/src/docs/asciidoc/guides/rest.adoc b/docs/src/docs/asciidoc/guides/rest.adoc
index 3870621..65c368a 100644
--- a/docs/src/docs/asciidoc/guides/rest.adoc
+++ b/docs/src/docs/asciidoc/guides/rest.adoc
@@ -160,7 +160,7 @@ Specifically, we notice the following things about our response:
* We have a header with the name of *x-auth-token* which contains a new session id
* The current username is displayed
-We can now use the *x-auth-token* to make another request without providing the username and password again. For example, the following outputs the the username just as before:
+We can now use the *x-auth-token* to make another request without providing the username and password again. For example, the following outputs the username just as before:
$ curl -v http://localhost:8080/ -H "x-auth-token: 0dc1f6e1-c7f1-41ac-8ce2-32b6b3e57aa3"
diff --git a/spring-session/src/main/java/org/springframework/session/web/socket/config/annotation/AbstractSessionWebSocketMessageBrokerConfigurer.java b/spring-session/src/main/java/org/springframework/session/web/socket/config/annotation/AbstractSessionWebSocketMessageBrokerConfigurer.java
index 4f8f85f..1b569e7 100644
--- a/spring-session/src/main/java/org/springframework/session/web/socket/config/annotation/AbstractSessionWebSocketMessageBrokerConfigurer.java
+++ b/spring-session/src/main/java/org/springframework/session/web/socket/config/annotation/AbstractSessionWebSocketMessageBrokerConfigurer.java
@@ -42,7 +42,7 @@ import org.springframework.web.util.UrlPathHelper;
* The configuration:
*
*
- * - Ensures the the {@link Session} is kept alive on incoming web socket messages.
+ * - Ensures the {@link Session} is kept alive on incoming web socket messages.
* - Ensures that Web Socket Sessions are destroyed when a {@link Session} is terminated
*
*