You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@karaf.apache.org by jb...@apache.org on 2013/11/27 19:13:42 UTC

svn commit: r1546147 - /karaf/trunk/system/command/src/main/java/org/apache/karaf/system/commands/Shutdown.java

Author: jbonofre
Date: Wed Nov 27 18:13:42 2013
New Revision: 1546147

URL: http://svn.apache.org/r1546147
Log:
Fix a typo mistake in the time argument description of the shutdown command.

Modified:
    karaf/trunk/system/command/src/main/java/org/apache/karaf/system/commands/Shutdown.java

Modified: karaf/trunk/system/command/src/main/java/org/apache/karaf/system/commands/Shutdown.java
URL: http://svn.apache.org/viewvc/karaf/trunk/system/command/src/main/java/org/apache/karaf/system/commands/Shutdown.java?rev=1546147&r1=1546146&r2=1546147&view=diff
==============================================================================
--- karaf/trunk/system/command/src/main/java/org/apache/karaf/system/commands/Shutdown.java (original)
+++ karaf/trunk/system/command/src/main/java/org/apache/karaf/system/commands/Shutdown.java Wed Nov 27 18:13:42 2013
@@ -44,7 +44,7 @@ public class Shutdown extends AbstractSy
 
 
     @Argument(name = "time", index = 0, description = "Shutdown after a specified delay. The time argument can have different" +
-            " formats. First, it can be an abolute time in the format hh:mm, in which hh is the hour (1 or 2 digits) and mm" +
+            " formats. First, it can be an absolute time in the format hh:mm, in which hh is the hour (1 or 2 digits) and mm" +
             " is the minute of the hour (in two digits). Second, it can be in the format +m, in which m is the number of minutes" +
             " to wait. The word now is an alias for +0.", required = false, multiValued = false)
     String time;