MINOR: equality check consistency

Updated all equality logic checks to use double == for consistency across the page.
This commit is contained in:
Stevie Mayhew 2013-06-07 12:33:57 +12:00
parent d3a4161a94
commit 6aae3d7d05

View File

@ -146,7 +146,7 @@ quotes, `kipper`, which is a **literal**. If true, the text inside the if-block
is output.
:::ss
<% if $MyDinner="kipper" %>
<% if $MyDinner=="kipper" %>
Yummy, kipper for tea.
<% end_if %>
@ -159,7 +159,7 @@ This example shows the use of the `else` option. The markup after `else` is
output if the tested condition is *not* true.
:::ss
<% if $MyDinner="kipper" %>
<% if $MyDinner=="kipper" %>
Yummy, kipper for tea
<% else %>
I wish I could have kipper :-(
@ -171,9 +171,9 @@ and the markup for that condition is used. If none of the conditions are true,
the markup in the `else` clause is used, if that clause is present.
:::ss
<% if $MyDinner="quiche" %>
<% if $MyDinner=="quiche" %>
Real men don't eat quiche
<% else_if $MyDinner=$YourDinner %>
<% else_if $MyDinner==$YourDinner %>
We both have good taste
<% else %>
Can I have some of your chips?