Comments only: typos

This commit is contained in:
Tim Chevalier 2012-06-18 13:34:15 -07:00
parent e7ce32310b
commit 1b4dcbecac
3 changed files with 3 additions and 3 deletions

View File

@ -566,7 +566,7 @@ pure fn to_upper(s: str/&) -> str {
}
#[doc = "
Replace all occurances of one string with another
Replace all occurrences of one string with another
# Arguments

View File

@ -7,7 +7,7 @@ import future::future;
export map, mapi, alli, any, mapi_factory;
#[doc="The maximum number of tasks this module will spawn for a single
operationg."]
operation."]
const max_tasks : uint = 32u;
#[doc="The minimum number of elements each task will process."]

View File

@ -1,6 +1,6 @@
/**
An implementation of the Graph500 Bread First Search problem in Rust.
An implementation of the Graph500 Breadth First Search problem in Rust.
*/