diff --git a/web/src/main/java/org/springframework/security/web/authentication/SavedRequestAwareAuthenticationSuccessHandler.java b/web/src/main/java/org/springframework/security/web/authentication/SavedRequestAwareAuthenticationSuccessHandler.java
index a68f6f1405..7fc71638f5 100644
--- a/web/src/main/java/org/springframework/security/web/authentication/SavedRequestAwareAuthenticationSuccessHandler.java
+++ b/web/src/main/java/org/springframework/security/web/authentication/SavedRequestAwareAuthenticationSuccessHandler.java
@@ -26,23 +26,23 @@ import org.springframework.util.StringUtils;
* Following a successful authentication, it decides on the redirect destination, based on the following scenarios:
*
* -
- * If the alwaysUseDefaultTargetUrl property is set to true, the defaultTargetUrl
- * will be used for the destination. Any DefaultSavedRequest stored in the session will be
+ * If the {@code alwaysUseDefaultTargetUrl} property is set to true, the {@code defaultTargetUrl}
+ * will be used for the destination. Any {@code DefaultSavedRequest} stored in the session will be
* removed.
*
* -
- * If the targetUrlParameter has been set on the request, the value will be used as the destination.
- * Any DefaultSavedRequest will again be removed.
+ * If the {@code targetUrlParameter} has been set on the request, the value will be used as the destination.
+ * Any {@code DefaultSavedRequest} will again be removed.
*
* -
- * If a {@link DefaultSavedRequest} is found in the RequestCache (as set by the {@link ExceptionTranslationFilter} to
+ * If a {@link SavedRequest} is found in the {@code RequestCache} (as set by the {@link ExceptionTranslationFilter} to
* record the original destination before the authentication process commenced), a redirect will be performed to the
- * Url of that original destination. The DefaultSavedRequest object will remain cached and be picked up
+ * Url of that original destination. The {@code SavedRequest} object will remain cached and be picked up
* when the redirected request is received
* (See {@link org.springframework.security.web.savedrequest.SavedRequestAwareWrapper SavedRequestAwareWrapper}).
*
* -
- * If no DefaultSavedRequest is found, it will delegate to the base class.
+ * If no {@code SavedRequest} is found, it will delegate to the base class.
*
*
*