diff options
author | Adam Bard <github@adambard.com> | 2020-01-27 21:27:17 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-27 21:27:17 -0800 |
commit | e308a83830d81f3134a14acfbf11353c048de3b0 (patch) | |
tree | b91a5bf4a4825ab3a6eede61ca8c2ab995450495 | |
parent | 6c91d55aba0e2dd66882ff4e3fd349becfe9b0fe (diff) | |
parent | dc7996c6e84f38a1cbb7e268c69275c7f19b792a (diff) |
Merge pull request #3823 from Sohib/patch-1
[php/en] Remove an extra double quote
-rw-r--r-- | php.html.markdown | 2 |
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'); |