summaryrefslogtreecommitdiff
path: root/Chalice/examples/cell.chalice
diff options
context:
space:
mode:
Diffstat (limited to 'Chalice/examples/cell.chalice')
-rw-r--r--Chalice/examples/cell.chalice6
1 files changed, 3 insertions, 3 deletions
diff --git a/Chalice/examples/cell.chalice b/Chalice/examples/cell.chalice
index d4003a3c..1cf82950 100644
--- a/Chalice/examples/cell.chalice
+++ b/Chalice/examples/cell.chalice
@@ -57,7 +57,7 @@ class Interval module Library2 {
requires 0<=l && l <= r;
requires acc(left) && acc(right);
ensures valid;
- ensures getLeft()==l
+ ensures getLeft()==l;
ensures getRight()==r;
{
left := new Cell;
@@ -143,10 +143,10 @@ class Program module Main {
}
method main3() returns (rt: Cell)
- ensures rt!=null && rt.valid && rt.get() == 0
+ ensures rt!=null && rt.valid && rt.get() == 0;
{
rt := new Cell;
- call rt.init(0)
+ call rt.init(0);
}
method main4() {