summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAdam Bard <github@adambard.com>2013-06-29 23:18:21 -0700
committerAdam Bard <github@adambard.com>2013-06-29 23:18:21 -0700
commite80e36e14202c4db9602ddf0b6639ff02e821cb9 (patch)
tree000bea3c2baeb47abdf8b77cc3fc2938222edd09
parent0615be257d5d3437e256be8de9ed5abac4315f02 (diff)
parentc3df7c1c5358e34673264122f16ceaf5f17e236c (diff)
Merge pull request #55 from emarref/master
PHP review
-rw-r--r--php.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/php.html.markdown b/php.html.markdown
index 20923548..75bbd214 100644
--- a/php.html.markdown
+++ b/php.html.markdown
@@ -379,7 +379,7 @@ echo $function_name(1, 2); // => 3
```
```php
<?php
-// Included files must also begin with a PHP open tags.
+// PHP within included files must also begin with a PHP open tag.
include 'my-file.php';
// The code in my-file.php is now available in the current scope.