Skip to content

Commit

Permalink
Fix statement capitalization
Browse files Browse the repository at this point in the history
just making it consistent with the other items in the list.
  • Loading branch information
neclimdul authored and nikic committed Sep 28, 2017
1 parent dc32901 commit 1dc4793
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions spec/00-specification-for-php.md
Original file line number Diff line number Diff line change
Expand Up @@ -183,8 +183,8 @@ is distributed without any warranty.
- [The `throw` Statement](11-statements.md#the-throw-statement)
- [The `try` Statement](11-statements.md#the-try-statement)
- [The `declare` Statement](11-statements.md#the-declare-statement)
- [The `echo` statement](11-statements.md#the-echo-statement)
- [The `unset` statement](11-statements.md#the-unset-statement)
- [The `echo` Statement](11-statements.md#the-echo-statement)
- [The `unset` Statement](11-statements.md#the-unset-statement)
- [Arrays](12-arrays.md#arrays)
- [General](12-arrays.md#general)
- [Array Creation and Initialization](12-arrays.md#array-creation-and-initialization)
Expand Down
4 changes: 2 additions & 2 deletions spec/11-statements.md
Original file line number Diff line number Diff line change
Expand Up @@ -1294,7 +1294,7 @@ declare(encoding = 'ISO-8859-1'); // Latin-1 Western European
declare(encoding = 'ISO-8859-5'); // Latin/Cyrillic
```

## The `echo` statement
## The `echo` Statement

**Syntax**

Expand Down Expand Up @@ -1345,7 +1345,7 @@ $v3 = "qqq{$v2}zzz";
echo "$v3\n";
```

## The `unset` statement
## The `unset` Statement

**Syntax**

Expand Down

0 comments on commit 1dc4793

Please sign in to comment.