diff options
author | Suhayb Alghutaymil <sohib6@gmail.com> | 2020-01-22 13:49:33 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-22 13:49:33 +0300 |
commit | dc7996c6e84f38a1cbb7e268c69275c7f19b792a (patch) | |
tree | d039456ecc56c97d30d22b890edab61601bec57a /php.html.markdown | |
parent | 1eecfded69cf0e92b7483ded18d4b2b830f37b47 (diff) |
Remove an extra double quote
Diffstat (limited to 'php.html.markdown')
-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'); |