Skip to content

Commit

Permalink
Fix markdown syntax.
Browse files Browse the repository at this point in the history
  • Loading branch information
ioquatix committed Apr 24, 2016
1 parent 3ef5983 commit 82f4935
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,11 +128,11 @@ Line wrapping is done by the terminal which is a bit ugly in some cases. There i

#### Type Coercion

It might make sense to enforce constraints at parse time.. or not. For example, if an option is given like '--count <int>' we should probably parse an integer?
It might make sense to enforce constraints at parse time.. or not. For example, if an option is given like `--count <int>` we should probably parse an integer?

#### Multi-value Options

Right now, options can take a single argument, e.g. '--count <int>'. Ideally, we support a specific sub-parser defined by the option, e.g. '--count <int...>' or '--tag <section> <tags...>'. These would map to specific parsers using `Samovar::One` and `Samovar::Many` internally.
Right now, options can take a single argument, e.g. `--count <int>`. Ideally, we support a specific sub-parser defined by the option, e.g. `--count <int...>` or `--tag <section> <tags...>`. These would map to specific parsers using `Samovar::One` and `Samovar::Many` internally.

#### Global Options

Expand Down

0 comments on commit 82f4935

Please sign in to comment.