core: make_a_sandwitch -> make_a_sandwich

This commit is contained in:
Patrick Walton 2012-06-26 13:55:33 -07:00
parent 481267299d
commit 6413421c8c

View File

@ -6,7 +6,7 @@ operations for working with them.
~~~ ~~~
let delayed_fib = future::spawn {|| fib(5000) }; let delayed_fib = future::spawn {|| fib(5000) };
make_a_sandwitch(); make_a_sandwich();
io::println(#fmt(\"fib(5000) = %?\", delayed_fib.get())) io::println(#fmt(\"fib(5000) = %?\", delayed_fib.get()))
~~~ ~~~
"]; "];