Skip to content

Commit 7191826

Browse files
committed
Readme fixes.
1 parent e76c8fb commit 7191826

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -198,23 +198,23 @@ $command = $this->runArtisan(new MyCommand, ['--name' => 'Jane']);
198198
199199
#### `willSeeConfirmation()`
200200
201-
Check if confirmation is seen during artisan command execution:
201+
Check if the confirmation is seen during artisan command execution:
202202
203203
```php
204204
$this->willSeeConfirmation('Are you sure?', MyCommand::class);
205205
```
206206
207207
#### `willNotSeeConfirmation()`
208208
209-
Check if confirmation is not seen during artisan command execution:
209+
Check if the confirmation is not seen during artisan command execution:
210210
211211
```php
212212
$this->willNotSeeConfirmation('Are you sure?', MyCommand::class);
213213
```
214214
215215
#### `willGiveConfirmation()`
216216
217-
Check if confirmation is seen during artisan command execution and accept it:
217+
Check if the confirmation is seen during artisan command execution and accept it:
218218
219219
```php
220220
$this->willGiveConfirmation('Are you sure?', MyCommand::class);
@@ -224,7 +224,7 @@ $this->seeArtisanOutput('Done!');
224224
225225
#### `willNotGiveConfirmation()`
226226
227-
Check if confirmation is seen during artisan command execution and refuse it:
227+
Check if the confirmation is seen during artisan command execution and refuse it:
228228
229229
```php
230230
$this->willNotGiveConfirmation('Are you sure?', MyCommand::class);

0 commit comments

Comments
 (0)