Skip to content

Commit

Permalink
Merge pull request #317 from paulyoung/paulyoung/fix-grammar
Browse files Browse the repository at this point in the history
  • Loading branch information
boozook authored Apr 19, 2024
2 parents e334325 + b5ca574 commit 2a9f7e9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cargo/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ cargo playdate init --lib --full-metadata --deps="playdate"
cargo playdate run
```

> Note, there is more options for this commands, e.g. `--deps="sys:git, controls:git"`.
> Note, there are more options for this command, e.g. `--deps="sys:git, controls:git"`.
> Run `cargo playdate new --help` for more about it.
New package will be created.
Expand Down
2 changes: 1 addition & 1 deletion cargo/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ fn execute(config: &Config) -> CargoResult<()> {
let packages = package::build_all(&config, assets, products)?;
match packages.len() {
1 => (),
0 => bail!("No packages has been produced, nothing to run."),
0 => bail!("No packages have been produced, nothing to run."),
n => bail!("Produced {n} packages but should be 1, can't choose one."),
}
let package = packages.first().unwrap();
Expand Down

0 comments on commit 2a9f7e9

Please sign in to comment.