Skip to content

Commit

Permalink
Fix typos in Commands section of docs (#184)
Browse files Browse the repository at this point in the history
  • Loading branch information
David Castelletti authored May 26, 2020
1 parent ee94b2b commit eb4beb5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ Commands:

When calling subcommands, the position of options and arguments on the
command line affect which command will parse them. A parameter is parsed
by a command if is occurs after the command name, but before any other
by a command if it occurs after the command name, but before any other
command names.

```kotlin tab="Example"
Expand Down Expand Up @@ -147,7 +147,7 @@ easier, but what if you want to pass information to a child command? You
can do so with the command's [`Context`][Context].

Every time the command line is parsed, each command creates a new
context object for itself that is liked to its parent's context.
context object for itself that is linked to its parent's context.
`Context` objects have a number of properties that can be used to
customize command line parsing. Although each command creates its own
context, the configuration is inherited from the parent context.
Expand Down

0 comments on commit eb4beb5

Please sign in to comment.