summaryrefslogtreecommitdiff
path: root/Source/Dafny/DafnyAst.cs
diff options
context:
space:
mode:
authorGravatar Rustan Leino <leino@microsoft.com>2011-04-21 17:32:52 -0700
committerGravatar Rustan Leino <leino@microsoft.com>2011-04-21 17:32:52 -0700
commitd367c34ddf96cf77559e86e4311b4fad564c3262 (patch)
tree4b65e2cf37db96668b154de5228be84ddfe3d3b5 /Source/Dafny/DafnyAst.cs
parentec5c7538c19c214bd76d2004b55abf7cf3c6b0b3 (diff)
Dafny: Fix parsing of if-then-else expressions, and don't require parentheses around forall/exists expressions
Diffstat (limited to 'Source/Dafny/DafnyAst.cs')
-rw-r--r--Source/Dafny/DafnyAst.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Dafny/DafnyAst.cs b/Source/Dafny/DafnyAst.cs
index 69756d76..d923e5dc 100644
--- a/Source/Dafny/DafnyAst.cs
+++ b/Source/Dafny/DafnyAst.cs
@@ -2232,7 +2232,7 @@ namespace Microsoft.Dafny {
switch (op) {
case Opcode.Iff:
- return "==";
+ return "<==>";
case Opcode.Imp:
return "==>";
case Opcode.And: