summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--php.html.markdown4
1 files changed, 2 insertions, 2 deletions
diff --git a/php.html.markdown b/php.html.markdown
index d08b9220..a9604df3 100644
--- a/php.html.markdown
+++ b/php.html.markdown
@@ -190,9 +190,9 @@ if (/* test */) {
}
<?php if (/* test */): ?>
-<!-- Do something that isn't PHP -->
+This is displayed if the test is truthy.
<?php else: ?>
-<!-- Do something default -->
+This is displayed otherwise.
<?php endif; ?>
```