From dc7996c6e84f38a1cbb7e268c69275c7f19b792a Mon Sep 17 00:00:00 2001 From: Suhayb Alghutaymil Date: Wed, 22 Jan 2020 13:49:33 +0300 Subject: Remove an extra double quote --- php.html.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'); -- cgit v1.2.3