From 6404440cbf216111b4643e6cf5667b7e64fef9b5 Mon Sep 17 00:00:00 2001 From: Chris Beams Date: Thu, 4 Aug 2011 14:07:36 +0000 Subject: [PATCH] Fix typo in SmartLifecycle Javadoc Issue: SPR-8570 --- .../main/java/org/springframework/context/SmartLifecycle.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org.springframework.context/src/main/java/org/springframework/context/SmartLifecycle.java b/org.springframework.context/src/main/java/org/springframework/context/SmartLifecycle.java index 5306652438..ffd4c92cb9 100644 --- a/org.springframework.context/src/main/java/org/springframework/context/SmartLifecycle.java +++ b/org.springframework.context/src/main/java/org/springframework/context/SmartLifecycle.java @@ -73,7 +73,7 @@ public interface SmartLifecycle extends Lifecycle, Phased { * the SmartLifecycle component does indeed stop. *

The {@code LifecycleProcessor} will call only this variant of the * {@code stop} method; i.e. {@link Lifecycle#stop()} will not be called for - * {@link SmartLifecycle} implementations unless explicitly delegated to within the + * {@link SmartLifecycle} implementations unless explicitly delegated to within * this method. */ void stop(Runnable callback);