Fix for misspelled comments.

The spelling corrections were made in both documentation comments and
regular comments.
This commit is contained in:
Joseph Crail 2015-02-04 23:00:02 -05:00
parent ba2f13ef06
commit dc2e444e50
27 changed files with 36 additions and 36 deletions

View file

@ -523,7 +523,7 @@ fn print<'a>(s: &'a str); // expanded
fn debug(lvl: u32, s: &str); // elided
fn debug<'a>(lvl: u32, s: &'a str); // expanded
// In the preceeding example, `lvl` doesn't need a lifetime because it's not a
// In the preceding example, `lvl` doesn't need a lifetime because it's not a
// reference (`&`). Only things relating to references (such as a `struct`
// which contains a reference) need lifetimes.