Skip to content

Commit 0c4eb94

Browse files
authored
fix: capitalise correctly (#511)
1 parent b597eef commit 0c4eb94

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cargo-shuttle/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -489,7 +489,7 @@ impl Shuttle {
489489

490490
async fn project_create(&self, client: &Client) -> Result<()> {
491491
self.wait_with_spinner(
492-
&[project::State::Ready, project::state::Errored],
492+
&[project::State::Ready, project::State::Errored],
493493
Client::create_project,
494494
self.ctx.project_name(),
495495
client,
@@ -506,7 +506,7 @@ impl Shuttle {
506506
&[
507507
project::State::Ready,
508508
project::State::Destroyed,
509-
project::state::Errored,
509+
project::State::Errored,
510510
],
511511
Client::get_project,
512512
self.ctx.project_name(),

0 commit comments

Comments
 (0)