Skip to content

Commit ab87af1

Browse files
fix: typo
1 parent 3ad9563 commit ab87af1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Services/ComponentInstaller.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,6 @@ public function handleOverwriteChoice()
126126

127127
public function confirmDestructiveAction()
128128
{
129-
return confirm("All the component files will be overwritten, you might lose your modifications. are you sure you want to processed?");
129+
return confirm("All the component files will be overwritten, you might lose your modifications. are you sure you want to proceed?");
130130
}
131131
}

tests/Feature/Commands/InstallCommandTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333
$this->artisan("sheaf:install separator")
3434
->expectsQuestion("Component 'Separator' already exists. What would you like to do?", "overwrite")
35-
->expectsQuestion("All the component files will be overwritten, you might lose your modifications. are you sure you want to processed?", "yes")
35+
->expectsQuestion("All the component files will be overwritten, you might lose your modifications. are you sure you want to proceed?", "yes")
3636
->expectsOutputToContain("All component files will be overwritten.")
3737
->assertExitCode(0)
3838
->run();

0 commit comments

Comments
 (0)