From a622a92001ed42f140549ebeefc74393e845ae19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20M=C3=BCnch?= Date: Tue, 30 Jan 2018 16:40:15 +0100 Subject: [PATCH] Fix: Typo in DelegatingPasswordEncoder's Javadoc --- .../security/crypto/password/DelegatingPasswordEncoder.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/src/main/java/org/springframework/security/crypto/password/DelegatingPasswordEncoder.java b/crypto/src/main/java/org/springframework/security/crypto/password/DelegatingPasswordEncoder.java index 21542f6ddc..b6738db848 100644 --- a/crypto/src/main/java/org/springframework/security/crypto/password/DelegatingPasswordEncoder.java +++ b/crypto/src/main/java/org/springframework/security/crypto/password/DelegatingPasswordEncoder.java @@ -93,7 +93,7 @@ import java.util.Map; * *

Password Encoding

* - * The @{code idForEncode} passed into the constructor determines which + * The {@code idForEncode} passed into the constructor determines which * {@link PasswordEncoder} will be used for encoding passwords. In the * {@code DelegatingPasswordEncoder} we constructed above, that means that the result of * encoding "password" would be delegated to {@code BCryptPasswordEncoder} and be prefixed