summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAdam Bard <github@adambard.com>2020-01-27 21:27:17 -0800
committerGitHub <noreply@github.com>2020-01-27 21:27:17 -0800
commite308a83830d81f3134a14acfbf11353c048de3b0 (patch)
treeb91a5bf4a4825ab3a6eede61ca8c2ab995450495
parent6c91d55aba0e2dd66882ff4e3fd349becfe9b0fe (diff)
parentdc7996c6e84f38a1cbb7e268c69275c7f19b792a (diff)
Merge pull request #3823 from Sohib/patch-1
[php/en] Remove an extra double quote
-rw-r--r--php.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/php.html.markdown b/php.html.markdown
index 40c9dd01..d4103e97 100644
--- a/php.html.markdown
+++ b/php.html.markdown
@@ -289,7 +289,7 @@ if (false) {
print (false ? 'Does not get printed' : 'Does');
// ternary shortcut operator since PHP 5.3
-// equivalent of "$x ? $x : 'Does'""
+// equivalent of "$x ? $x : 'Does'"
$x = false;
print($x ?: 'Does');