Skip to content

Commit

Permalink
fix docs so they refer to start subcommand instead of hello (#682)
Browse files Browse the repository at this point in the history
Co-authored-by: r-arias <[email protected]>
  • Loading branch information
r-arias and r-arias authored Oct 15, 2024
1 parent 3f2a989 commit 1e4264f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ noteworthy:

- `src/application.rs`: Abscissa application type for your app
- `src/commands*`: application entrypoint and subcommands. Make sure to
check out the `hello.rs` example of how to make a subcommand.
check out the `start.rs` example of how to make a subcommand.
- `src/config.rs`: application configuration
- `src/error.rs`: error types

Expand All @@ -94,11 +94,11 @@ Abscissa applications are implemented as Rust libraries, but have a
can run the following within your newly generated application:

```text
$ cargo run -- hello world
$ cargo run -- start world
```

This will invoke the `hello` subcommand of your application (you'll
probably want to rename that in a real app) which will print the following:
This will invoke the `start` subcommand of your application (you
might want to rename that in your app) which will print the following:

```text
Hello, world!
Expand Down

0 comments on commit 1e4264f

Please sign in to comment.