From 84491f7b06a93beef714d01566e644d1cd00681e Mon Sep 17 00:00:00 2001 From: Neil Masters Date: Wed, 12 Mar 2014 16:25:24 +0000 Subject: [PATCH] Update The-Basics.md Updated to conform to rest of document and I believe that I have utilized the correct syntax for then highlighters. --- pages/The-Basics.md | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/pages/The-Basics.md b/pages/The-Basics.md index 68f2d52..b6866ea 100644 --- a/pages/The-Basics.md +++ b/pages/The-Basics.md @@ -305,15 +305,21 @@ vs. $a = 5; return ($a == 5) ? 'yay' : 'nope'; // this example will return 'yay' -It should be noted to save confusion that you do not need to use a ternary operator for returning a boolean value. An example of this would be. +{% endhighlight %} +It should be noted that you do not need to use a ternary operator for returning a boolean value. An example of this would be. + +{% highlight php %} +