From 0b6487cf2c51945c7107f4ebf2b49e4c4e873043 Mon Sep 17 00:00:00 2001 From: Chris Peterson Date: Sun, 20 Jan 2013 22:48:47 -0800 Subject: [PATCH] doc: Fix tutorial typo and remove unnecessary xfail-test --- doc/tutorial-tasks.md | 2 +- doc/tutorial.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/tutorial-tasks.md b/doc/tutorial-tasks.md index d29eb8a98fd..26541eca7d3 100644 --- a/doc/tutorial-tasks.md +++ b/doc/tutorial-tasks.md @@ -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} diff --git a/doc/tutorial.md b/doc/tutorial.md index e26651508ef..a8839ad1630 100644 --- a/doc/tutorial.md +++ b/doc/tutorial.md @@ -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")]; ~~~~