From 5d0d1bd40416620709c28f7d79b95023577bb183 Mon Sep 17 00:00:00 2001 From: Luke Taylor Date: Tue, 14 Apr 2009 12:56:16 +0000 Subject: [PATCH] Fixed Javadoc typo. --- .../springframework/security/userdetails/UserCache.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/src/main/java/org/springframework/security/userdetails/UserCache.java b/core/src/main/java/org/springframework/security/userdetails/UserCache.java index c39fb18511..1c8b5ca3d3 100644 --- a/core/src/main/java/org/springframework/security/userdetails/UserCache.java +++ b/core/src/main/java/org/springframework/security/userdetails/UserCache.java @@ -18,14 +18,14 @@ package org.springframework.security.userdetails; /** - * Provides a cache of {@link User} objects. + * Provides a cache of {@link UserDetails} objects. * - *

+ *

* Implementations should provide appropriate methods to set their cache - * parameters (eg time-to-live) and/or force removal of entities before their + * parameters (e.g. time-to-live) and/or force removal of entities before their * normal expiration. These are not part of the UserCache * interface contract because they vary depending on the type of caching - * system used (eg in-memory vs disk vs cluster vs hybrid). + * system used (e.g. in-memory vs disk vs cluster vs hybrid). *

* * @author Ben Alex