Skip to content

Commit

Permalink
chore: fixes failing rustdoc
Browse files Browse the repository at this point in the history
  • Loading branch information
kbknapp committed Jan 28, 2016
1 parent d6333ca commit 0d9323d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/args/arg.rs
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ impl<'a, 'b> Arg<'a, 'b> {
///
/// Usage strings typically following the form:
///
/// ```ignore
/// ```notrust
/// [explicit name] [short] [long] [value names] [help string]
/// ```
///
Expand Down Expand Up @@ -238,7 +238,7 @@ impl<'a, 'b> Arg<'a, 'b> {
/// Example explicit names as follows (`ename` for an optional argument, and `rname` for a
/// required argument):
///
/// ```ignore
/// ```notrust
/// [ename] -s, --long 'some flag'
/// <rname> -r, --longer 'some other flag'
/// ```
Expand All @@ -254,7 +254,7 @@ impl<'a, 'b> Arg<'a, 'b> {
///
/// Example shorts are as follows (`-s`, and `-r`):
///
/// ```ignore
/// ```notrust
/// -s, --long 'some flag'
/// <rname> -r [val], --longer 'some option'
/// ```
Expand All @@ -269,7 +269,7 @@ impl<'a, 'b> Arg<'a, 'b> {
///
/// Example longs are as follows (`--some`, and `--rapid`):
///
/// ```ignore
/// ```notrust
/// -s, --some 'some flag'
/// --rapid=[FILE] 'some option'
/// ```
Expand All @@ -290,7 +290,7 @@ impl<'a, 'b> Arg<'a, 'b> {
///
/// Example values are as follows (`FILE`, and `SPEED`):
///
/// ```ignore
/// ```notrust
/// -s, --some [FILE] 'some option'
/// --rapid=<SPEED>... 'some required multiple option'
/// ```
Expand All @@ -301,7 +301,7 @@ impl<'a, 'b> Arg<'a, 'b> {
///
/// Example help strings are as follows:
///
/// ```ignore
/// ```notrust
/// -s, --some [FILE] 'some option'
/// --rapid=<SPEED>... 'some required multiple option'
/// ```
Expand Down

0 comments on commit 0d9323d

Please sign in to comment.