From 7e274ea5b6f76dcb95ee22a4aeb2ab371e002610 Mon Sep 17 00:00:00 2001 From: Rob Winch Date: Wed, 4 Dec 2013 16:18:59 -0600 Subject: [PATCH] Fix typo in InternalAuthenticationServiceException javadoc --- .../authentication/InternalAuthenticationServiceException.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/org/springframework/security/authentication/InternalAuthenticationServiceException.java b/core/src/main/java/org/springframework/security/authentication/InternalAuthenticationServiceException.java index 648f3b5291..09e8ce3e81 100644 --- a/core/src/main/java/org/springframework/security/authentication/InternalAuthenticationServiceException.java +++ b/core/src/main/java/org/springframework/security/authentication/InternalAuthenticationServiceException.java @@ -17,7 +17,7 @@ package org.springframework.security.authentication; * Thrown if an authentication request could not be processed due to a system problem that occurred internally. It * differs from {@link AuthenticationServiceException} in that it would not be thrown if an external system has an * internal error or failure. This ensures that we can handle errors that are within our control distinctly from errors - * of other systems. The advantage to this distinction is that the unrusted external system should not be able to fill + * of other systems. The advantage to this distinction is that the untrusted external system should not be able to fill * up logs and cause excessive IO. However, an internal system should report errors. *

*