Put variables in correct order.

This commit is contained in:
Raymond Hettinger 2003-02-12 12:35:59 +00:00
parent 400ec56439
commit 5ef89e80a2
1 changed files with 2 additions and 2 deletions

View File

@ -85,7 +85,7 @@ Alternatives
Holger Krekel proposed a new, minimally invasive variant:
<expression1> and <condition> else <expression2>
<condition> and <expression1> else <expression2>
The concept behind it is that a nearly complete ternary operator
already exists with and/or and this proposal is the least invasive
@ -96,7 +96,7 @@ Alternatives
Christian Tismer proposed a variant of the same idea:
<expression1> then <condition> else <expression2>
<condition> then <expression1> else <expression2>
---