Updating str syntax

This commit is contained in:
Eric Holk 2012-07-16 12:38:31 -07:00
parent 436d263aed
commit c46bf6e716

View file

@ -330,7 +330,7 @@ fn select2i<A: selectable, B: selectable>(a: A, b: B) -> either<(), ()> {
alt wait_many([a.header(), b.header()]/_) {
0 { left(()) }
1 { right(()) }
_ { fail "wait returned unexpected index" }
_ { fail ~"wait returned unexpected index" }
}
}