From 7e2184ef61ddeb5370e6dc47fad9f7f00d25c4ba Mon Sep 17 00:00:00 2001 From: Philipp Czora Date: Thu, 13 Dec 2018 15:21:13 +0100 Subject: [PATCH] Fixed typo --- .../java/sonia/scm/user/ChangePasswordNotAllowedException.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scm-core/src/main/java/sonia/scm/user/ChangePasswordNotAllowedException.java b/scm-core/src/main/java/sonia/scm/user/ChangePasswordNotAllowedException.java index 486d392b0b..b0f8117e82 100644 --- a/scm-core/src/main/java/sonia/scm/user/ChangePasswordNotAllowedException.java +++ b/scm-core/src/main/java/sonia/scm/user/ChangePasswordNotAllowedException.java @@ -7,7 +7,7 @@ import sonia.scm.ContextEntry; public class ChangePasswordNotAllowedException extends BadRequestException { private static final String CODE = "9BR7qpDAe1"; - public static final String WRONG_USER_TYPE = "User of type %s are not allowed to change password"; + public static final String WRONG_USER_TYPE = "Users of type %s are not allowed to change password"; public ChangePasswordNotAllowedException(ContextEntry.ContextBuilder context, String type) { super(context.build(), String.format(WRONG_USER_TYPE, type));