Skip to content

Commit 76566b5

Browse files
Zylesjmcdo29
authored andcommitted
Typos
Fixing typos
1 parent 4b201a4 commit 76566b5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/docs/docs/features/commander.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ crun run 'echo Hello World!'
3535
crun 'echo Hello World!'
3636
```
3737

38-
We can use either of these _because_ we set up the `options: { default: true }` options.
38+
We can use either of these _because_ we set up the `options: { isDefault: true }` options.
3939

4040
This command doesn't do anything yet, but we'll get to the implementation of it later. For now, let's explore how we can set options for the command.
4141

@@ -92,7 +92,7 @@ It may also be that you want to add subcommands to your command, similar to `doc
9292
@Command({
9393
name: 'run',
9494
arguments: '<task>',
95-
subcommands: [FooCommand]
95+
subCommands: [FooCommand]
9696
})
9797
export class RunCommand implements CommandRunner {}
9898
```

0 commit comments

Comments
 (0)