From 5943137656242a53cf2b4fb49388f684e378d280 Mon Sep 17 00:00:00 2001 From: Stephen Colebourne Date: Sat, 26 Jul 2003 13:00:36 +0000 Subject: [PATCH] Javadoc improvements git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@137507 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/commons/lang/exception/Nestable.java | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/src/java/org/apache/commons/lang/exception/Nestable.java b/src/java/org/apache/commons/lang/exception/Nestable.java index c07ccc847..60d181583 100644 --- a/src/java/org/apache/commons/lang/exception/Nestable.java +++ b/src/java/org/apache/commons/lang/exception/Nestable.java @@ -65,7 +65,7 @@ import java.io.PrintWriter; * @author Kasper Nielsen * @author Steven Caswell * @since 1.0 - * @version $Id: Nestable.java,v 1.6 2003/03/23 17:47:51 scolebourne Exp $ + * @version $Id: Nestable.java,v 1.7 2003/07/26 13:00:36 scolebourne Exp $ */ public interface Nestable { @@ -169,8 +169,8 @@ public interface Nestable { /** * Prints the stack trace of this exception to the specified print - * writer. Includes inforamation from the exception--if - * any--which caused this exception. + * writer. Includes information from the exception, if any, + * which caused this exception. * * @param out PrintWriter to use for output. */ @@ -178,8 +178,8 @@ public interface Nestable { /** * Prints the stack trace of this exception to the specified print - * stream. Includes inforamation from the exception--if - * any--which caused this exception. + * stream. Includes inforamation from the exception, if any, + * which caused this exception. * * @param out PrintStream to use for output. */ @@ -196,4 +196,5 @@ public interface Nestable { * @param out The writer to use. */ public void printPartialStackTrace(PrintWriter out); + }