From d90a6dd8be7fe06c1baaae7aefa41a8f5db3bffb Mon Sep 17 00:00:00 2001 From: Ahammar Yassine Date: Thu, 18 Oct 2018 10:37:59 +0000 Subject: [PATCH] Avoid comment misunderstanding Old: `$a = 3; return ($a == 3) ? true : false; // Will return true or false if $a == 3` New: `$a = 3; return ($a == 3) ? true : false; // Will return true if $a == 3 or false` help us to avoid misunderstanding of the comment --- pages/The-Basics.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pages/The-Basics.md b/pages/The-Basics.md index bfb3a9f..c3870f4 100644 --- a/pages/The-Basics.md +++ b/pages/The-Basics.md @@ -367,12 +367,12 @@ would be. {% highlight php %}