Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--jetty-util/src/main/java/org/eclipse/jetty/util/component/Destroyable.java9
1 files changed, 4 insertions, 5 deletions
diff --git a/jetty-util/src/main/java/org/eclipse/jetty/util/component/Destroyable.java b/jetty-util/src/main/java/org/eclipse/jetty/util/component/Destroyable.java
index 655844f0ba..2a541ac4d5 100644
--- a/jetty-util/src/main/java/org/eclipse/jetty/util/component/Destroyable.java
+++ b/jetty-util/src/main/java/org/eclipse/jetty/util/component/Destroyable.java
@@ -3,11 +3,10 @@ package org.eclipse.jetty.util.component;
/**
- * A Destroyable is an object which can be detroyed.
- * <p>
- * Typically a Destroyable is a {@link LifeCycle} component that can hold onto
- * resources over multiple start/stop cycles. A call to destroy will release all
- * resources and will prevent any further start/stop cycles from being successful.
+ * <p>A Destroyable is an object which can be destroyed.</p>
+ * <p>Typically a Destroyable is a {@link LifeCycle} component that can hold onto
+ * resources over multiple start/stop cycles. A call to destroy will release all
+ * resources and will prevent any further start/stop cycles from being successful.</p>
*/
public interface Destroyable
{

Back to the top