Skip to content

Fix for misspelled comments in tests. #21955

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 7, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/test/bench/shootout-reverse-complement.rs
Original file line number Diff line number Diff line change
Expand Up @@ -90,12 +90,12 @@ impl Tables {
}
}

/// Retreives the complement for `i`.
/// Retrieves the complement for `i`.
fn cpl8(&self, i: u8) -> u8 {
self.table8[i as uint]
}

/// Retreives the complement for `i`.
/// Retrieves the complement for `i`.
fn cpl16(&self, i: u16) -> u16 {
self.table16[i as uint]
}
Expand Down
2 changes: 1 addition & 1 deletion src/test/compile-fail/assoc-inherent.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// Test associated types are forbidden in inherant impls.
// Test associated types are forbidden in inherent impls.

struct Foo;

Expand Down
2 changes: 1 addition & 1 deletion src/test/compile-fail/issue-7364.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

use std::cell::RefCell;

// Regresion test for issue 7364
// Regression test for issue 7364
static boxed: Box<RefCell<isize>> = box RefCell::new(0);
//~^ ERROR statics are not allowed to have custom pointers
//~| ERROR: the trait `core::marker::Sync` is not implemented for the type
Expand Down
2 changes: 1 addition & 1 deletion src/test/compile-fail/issue-9243.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// Regresion test for issue 9243
// Regression test for issue 9243

struct Test {
mem: isize,
Expand Down
2 changes: 1 addition & 1 deletion src/test/run-pass/issue-7660.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

// Regresion test for issue 7660
// Regression test for issue 7660
// rvalue lifetime too short when equivalent `match` works

extern crate collections;
Expand Down