Skip to content

Commit e76c8fb

Browse files
committed
Readme fixes.
1 parent 2481968 commit e76c8fb

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
@@ -760,31 +760,31 @@ $this->dontSeeInSchedule('foobarbaz');
760760
761761
#### `seeRegisteredAlias()`
762762
763-
Check that the specified alias was successfully registered by alias loader:
763+
Check that the specified alias was successfully registered by the alias loader:
764764
765765
```php
766766
$this->seeRegisteredAlias('Twitter');
767767
```
768768
769769
#### `dontSeeRegisteredAlias()`
770770
771-
Check that the specified alias was not registered by alias loader:
771+
Check that the specified alias was not registered by the alias loader:
772772
773773
```php
774774
$this->dontSeeRegisteredAlias('FooBarBaz');
775775
```
776776
777777
#### `seeRegisteredCommand()`
778778
779-
Checks that specified command was successfully registered by service provider:
779+
Check that the specified command was successfully registered by the service provider:
780780
781781
```php
782782
$this->seeRegisteredCommand('my-command');
783783
```
784784
785785
#### `dontSeeRegisteredCommand()`
786786
787-
Checks that specified command was not registered by service provider:
787+
Check that the specified command was not registered by the service provider:
788788
789789
```php
790790
$this->dontSeeRegisteredCommand('foobarbaz');

0 commit comments

Comments
 (0)