From bde73b303cb004c2441ec7a001b48bb91301ab8b Mon Sep 17 00:00:00 2001 From: "JesusFreke@JesusFreke.com" Date: Sat, 3 Apr 2010 23:03:13 +0000 Subject: [PATCH] minor changes to option usage info git-svn-id: https://smali.googlecode.com/svn/trunk@699 55b6fa8a-2a1e-11de-a435-ffa8d773f76a --- baksmali/src/main/java/org/jf/baksmali/main.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/baksmali/src/main/java/org/jf/baksmali/main.java b/baksmali/src/main/java/org/jf/baksmali/main.java index b9988970..161f7050 100644 --- a/baksmali/src/main/java/org/jf/baksmali/main.java +++ b/baksmali/src/main/java/org/jf/baksmali/main.java @@ -352,7 +352,7 @@ public class main { Option deodexerantOption = OptionBuilder.withLongOpt("deodex") .withDescription("deodex the given odex file. This option is ignored if the input file is not an " + - "odex file.") + "odex file") .create("x"); Option useLocalsOption = OptionBuilder.withLongOpt("use-locals") @@ -406,7 +406,7 @@ public class main { Option dumpOption = OptionBuilder.withLongOpt("dump-to") .withDescription("dumps the given dex file into a single annotated dump file named FILE" + - " (.dump by default), along with the normal disassembly.") + " (.dump by default), along with the normal disassembly") .hasOptionalArg() .withArgName("FILE") .create("D");