doc: Fix tutorial typo and remove unnecessary xfail-test

This commit is contained in:
Chris Peterson 2013-01-20 22:48:47 -08:00
parent 49e466f1e1
commit 0b6487cf2c
2 changed files with 2 additions and 2 deletions

View File

@ -220,7 +220,7 @@ let result = port.recv();
The `Port` and `Chan` pair created by `stream` enables efficient communication
between a single sender and a single receiver, but multiple senders cannot use
a single `Chan`, and multiple receivers cannot use a single `Port`. What if our
example needed to computer multiple results across a number of tasks? The
example needed to compute multiple results across a number of tasks? The
following program is ill-typed:
~~~ {.xfail-test}

View File

@ -2393,7 +2393,7 @@ override the name used to search for the crate.
Our example crate declared this set of `link` attributes:
~~~~ {.xfail-test}
~~~~
#[link(name = "farm", vers = "2.5", author = "mjh")];
~~~~