Commit 23553c99 authored by Skylot's avatar Skylot

cli: fix missing spaces in help

parent 54fbe8a7
...@@ -171,7 +171,7 @@ public class JadxCLIArgs { ...@@ -171,7 +171,7 @@ public class JadxCLIArgs {
} }
StringBuilder opt = new StringBuilder(); StringBuilder opt = new StringBuilder();
opt.append(" ").append(p.getNames()); opt.append(" ").append(p.getNames());
addSpaces(opt, maxNamesLen - opt.length() + 2); addSpaces(opt, maxNamesLen - opt.length() + 3);
opt.append("- ").append(p.getDescription()); opt.append("- ").append(p.getDescription());
out.println(opt); out.println(opt);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment