From 570a7686b1755c5bb05b9a26c3c6d0bc74fc755b Mon Sep 17 00:00:00 2001 From: Jay Bryant Date: Wed, 15 Apr 2020 14:52:33 -0500 Subject: [PATCH] Fix a bad typo Caught an egregious typing error from my own earlier work. --- spring-session-docs/src/docs/asciidoc/index.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-session-docs/src/docs/asciidoc/index.adoc b/spring-session-docs/src/docs/asciidoc/index.adoc index b275c2e4..963ca9a7 100644 --- a/spring-session-docs/src/docs/asciidoc/index.adoc +++ b/spring-session-docs/src/docs/asciidoc/index.adoc @@ -289,7 +289,7 @@ Any method that returns an `HttpSession` is overridden. All other methods are implemented by `HttpServletRequestWrapper` and delegate to the original `HttpServletRequest` implementation. We replace the `HttpServletRequest` implementation by using a servlet `Filter` called `SessionRepositoryFilter`. -The pseudocode belows: +The following pseudocode shows how it works: ==== [source, java]