You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by sg...@apache.org on 2010/06/06 23:22:51 UTC

svn commit: r951983 - /commons/proper/exec/trunk/src/main/java/org/apache/commons/exec/TimeoutObserver.java

Author: sgoeschl
Date: Sun Jun  6 21:22:51 2010
New Revision: 951983

URL: http://svn.apache.org/viewvc?rev=951983&view=rev
Log:
[EXEC-42] improving javadoc

Modified:
    commons/proper/exec/trunk/src/main/java/org/apache/commons/exec/TimeoutObserver.java

Modified: commons/proper/exec/trunk/src/main/java/org/apache/commons/exec/TimeoutObserver.java
URL: http://svn.apache.org/viewvc/commons/proper/exec/trunk/src/main/java/org/apache/commons/exec/TimeoutObserver.java?rev=951983&r1=951982&r2=951983&view=diff
==============================================================================
--- commons/proper/exec/trunk/src/main/java/org/apache/commons/exec/TimeoutObserver.java (original)
+++ commons/proper/exec/trunk/src/main/java/org/apache/commons/exec/TimeoutObserver.java Sun Jun  6 21:22:51 2010
@@ -26,10 +26,9 @@ package org.apache.commons.exec;
 public interface TimeoutObserver {
 
     /**
-     * Called when the watchdow times out.
+     * Called when the watchdog times out.
      * 
-     * @param w
-     *            the watchdog that timed out.
+     * @param w the watchdog that timed out.
      */
     void timeoutOccured(Watchdog w);
 }