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 2017/09/10 04:58:54 UTC

karaf git commit: [KARAF-5357] Fixes mistake in feature help info

Repository: karaf
Updated Branches:
  refs/heads/karaf-4.1.x adfdae1f5 -> 447320893


[KARAF-5357] Fixes mistake in feature help info


Project: http://git-wip-us.apache.org/repos/asf/karaf/repo
Commit: http://git-wip-us.apache.org/repos/asf/karaf/commit/44732089
Tree: http://git-wip-us.apache.org/repos/asf/karaf/tree/44732089
Diff: http://git-wip-us.apache.org/repos/asf/karaf/diff/44732089

Branch: refs/heads/karaf-4.1.x
Commit: 447320893757dfe34b11add1ad6b1311c5fd7889
Parents: adfdae1
Author: bseeger <bs...@amherst.edu>
Authored: Fri Sep 8 16:19:01 2017 -0400
Committer: Jean-Baptiste Onofré <jb...@apache.org>
Committed: Sun Sep 10 06:58:47 2017 +0200

----------------------------------------------------------------------
 .../org/apache/karaf/features/command/StopFeaturesCommand.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/karaf/blob/44732089/features/command/src/main/java/org/apache/karaf/features/command/StopFeaturesCommand.java
----------------------------------------------------------------------
diff --git a/features/command/src/main/java/org/apache/karaf/features/command/StopFeaturesCommand.java b/features/command/src/main/java/org/apache/karaf/features/command/StopFeaturesCommand.java
index 371e03c..ec7258a 100644
--- a/features/command/src/main/java/org/apache/karaf/features/command/StopFeaturesCommand.java
+++ b/features/command/src/main/java/org/apache/karaf/features/command/StopFeaturesCommand.java
@@ -30,7 +30,7 @@ import org.apache.karaf.shell.api.action.Completion;
 import org.apache.karaf.shell.api.action.Option;
 import org.apache.karaf.shell.api.action.lifecycle.Service;
 
-@Command(scope = "feature", name = "stop", description = "Start features with the specified name and version.")
+@Command(scope = "feature", name = "stop", description = "Stop features with the specified name and version.")
 @Service
 public class StopFeaturesCommand extends FeaturesCommandSupport {