From 368732a7a915b142cfbe393e89fc35cc6bfe59a3 Mon Sep 17 00:00:00 2001 From: Artem Vysochyn Date: Tue, 19 May 2020 14:36:41 +0300 Subject: [PATCH] Fixed javadoc --- jwt/src/main/java/io/scalecube/security/api/Authenticator.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jwt/src/main/java/io/scalecube/security/api/Authenticator.java b/jwt/src/main/java/io/scalecube/security/api/Authenticator.java index 28b0ea7..09e4bc4 100644 --- a/jwt/src/main/java/io/scalecube/security/api/Authenticator.java +++ b/jwt/src/main/java/io/scalecube/security/api/Authenticator.java @@ -7,7 +7,7 @@ public interface Authenticator { /** * Authenticate the identity of one. * - * @param token a string of identity, can be a token, a user & password etc,. + * @param token a string of identity, can be a token, a user and password etc,. * @return a mono with profile identifying the one, or mono with an error. */ Mono authenticate(String token);