Fix a bad typo

Caught an egregious typing error from my own earlier work.
This commit is contained in:
Jay Bryant
2020-04-15 14:52:33 -05:00
committed by Eleftheria Stein-Kousathana
parent fed318abc7
commit 570a7686b1

View File

@@ -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]