aboutsummaryrefslogtreecommitdiff
path: root/src/test/run-pass/acyclic-unwind.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/run-pass/acyclic-unwind.rs')
-rw-r--r--src/test/run-pass/acyclic-unwind.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/run-pass/acyclic-unwind.rs b/src/test/run-pass/acyclic-unwind.rs
index b549cffe..192a01f3 100644
--- a/src/test/run-pass/acyclic-unwind.rs
+++ b/src/test/run-pass/acyclic-unwind.rs
@@ -4,10 +4,10 @@ io fn f(chan[int] c)
{
type t = tup(int,int,int);
- // Allocate an exterior.
+ // Allocate a box.
let @t x = tup(1,2,3);
- // Signal parent that we've allocated an exterior.
+ // Signal parent that we've allocated a box.
c <| 1;
while (true) {