Skip to content

Commit

Permalink
Fix some typos in the docs (#5245)
Browse files Browse the repository at this point in the history
  • Loading branch information
jdreesen authored Feb 17, 2021
1 parent 9d6d391 commit 38d9234
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/annotating_code/type_syntax/array_types.md
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ Optional keys can be denoted by a trailing `?`, e.g.:

## Callable arrays

a array holding a callable, like phps native `call_user_func()` and friends supports it:
An array holding a callable, like PHP's native `call_user_func()` and friends supports it:

```php
<?php
Expand All @@ -132,4 +132,4 @@ $callable = [$object, 'aMethod'];

## non-empty-array

a array which is not allowed to be empty
An array which is not allowed to be empty.

0 comments on commit 38d9234

Please sign in to comment.