Skip to content

Commit

Permalink
Merge pull request #115 from douglarek/patch-1
Browse files Browse the repository at this point in the history
Typo fix
  • Loading branch information
kohsuke committed Aug 11, 2015
2 parents 00c192c + d55581e commit 8ecc2ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions args4j/src/org/kohsuke/args4j/Option.java
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@
* @Option(name="-a")
* int a;
* //-b is not required but if it's provided, then a becomes required
* @Option(name="-b", depends={"-a"}
* @Option(name="-b", depends={"-a"})
* int b;
* </pre>
*
Expand All @@ -221,7 +221,7 @@
* &#64;Option(name="-a")
* int a;
* // -h and -a cannot be specified together
* &#64;Option(name="-h", forbids={"-a"}
* &#64;Option(name="-h", forbids={"-a"})
* boolean h;
* </pre>
*
Expand Down

0 comments on commit 8ecc2ab

Please sign in to comment.