diff options
| author | Joseph Crail <jbcrail@gmail.com> | 2014-09-02 01:35:58 -0400 |
|---|---|---|
| committer | Joseph Crail <jbcrail@gmail.com> | 2014-09-03 23:10:38 -0400 |
| commit | b7bfe04b2d003d08f6ac450f41d7f221cb87f129 (patch) | |
| tree | 0bb355348f8f89601ad778d494f22e5f004912da /src/test | |
| parent | d59d97cbec6807166bc237d6f3f9bd1eeb5288d7 (diff) | |
| download | rust-b7bfe04b2d003d08f6ac450f41d7f221cb87f129.tar.gz rust-b7bfe04b2d003d08f6ac450f41d7f221cb87f129.zip | |
Fix spelling errors and capitalization.
Diffstat (limited to 'src/test')
| -rw-r--r-- | src/test/run-make/unicode-input/multiple_files.rs | 2 | ||||
| -rw-r--r-- | src/test/run-make/unicode-input/span_length.rs | 2 | ||||
| -rw-r--r-- | src/test/run-pass/no-std-xcrate2.rs | 4 | ||||
| -rw-r--r-- | src/test/run-pass/nullable-pointer-ffi-compat.rs | 2 | ||||
| -rw-r--r-- | src/test/run-pass/tag-align-dyn-u64.rs | 2 | ||||
| -rw-r--r-- | src/test/run-pass/tag-align-dyn-variants.rs | 2 | ||||
| -rw-r--r-- | src/test/run-pass/tag-align-u64.rs | 2 |
7 files changed, 8 insertions, 8 deletions
diff --git a/src/test/run-make/unicode-input/multiple_files.rs b/src/test/run-make/unicode-input/multiple_files.rs index 31802dd9f06..7c6d97dd5a3 100644 --- a/src/test/run-make/unicode-input/multiple_files.rs +++ b/src/test/run-make/unicode-input/multiple_files.rs @@ -20,7 +20,7 @@ use std::rand::{task_rng, Rng}; fn random_char() -> char { let mut rng = task_rng(); - // a subset of the XID_start unicode table (ensuring that the + // a subset of the XID_start Unicode table (ensuring that the // compiler doesn't fail with an "unrecognised token" error) let (lo, hi): (u32, u32) = match rng.gen_range(1u32, 4u32 + 1) { 1 => (0x41, 0x5a), diff --git a/src/test/run-make/unicode-input/span_length.rs b/src/test/run-make/unicode-input/span_length.rs index 913f1318ebf..e213e266548 100644 --- a/src/test/run-make/unicode-input/span_length.rs +++ b/src/test/run-make/unicode-input/span_length.rs @@ -19,7 +19,7 @@ use std::rand::{task_rng, Rng}; fn random_char() -> char { let mut rng = task_rng(); - // a subset of the XID_start unicode table (ensuring that the + // a subset of the XID_start Unicode table (ensuring that the // compiler doesn't fail with an "unrecognised token" error) let (lo, hi): (u32, u32) = match rng.gen_range(1u32, 4u32 + 1) { 1 => (0x41, 0x5a), diff --git a/src/test/run-pass/no-std-xcrate2.rs b/src/test/run-pass/no-std-xcrate2.rs index b19541a0b1a..dcafb5f451f 100644 --- a/src/test/run-pass/no-std-xcrate2.rs +++ b/src/test/run-pass/no-std-xcrate2.rs @@ -8,7 +8,7 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. -// ignore-test: this has weird linking problems on linux, and it probably needs a +// ignore-test: this has weird linking problems on Linux, and it probably needs a // solution along the lines of disabling segmented stacks and/or the // stack checks. // aux-build:no_std_crate.rs @@ -20,7 +20,7 @@ extern crate no_std_crate; -// This is an unfortunate thing to have to do on linux :( +// This is an unfortunate thing to have to do on Linux :( #[cfg(target_os = "linux")] #[doc(hidden)] pub mod linkhack { diff --git a/src/test/run-pass/nullable-pointer-ffi-compat.rs b/src/test/run-pass/nullable-pointer-ffi-compat.rs index 548a16bd120..b5c541b0c63 100644 --- a/src/test/run-pass/nullable-pointer-ffi-compat.rs +++ b/src/test/run-pass/nullable-pointer-ffi-compat.rs @@ -9,7 +9,7 @@ // except according to those terms. // #11303, #11040: -// This would previously crash on i686 linux due to abi differences +// This would previously crash on i686 Linux due to abi differences // between returning an Option<T> and T, where T is a non nullable // pointer. // If we have an enum with two variants such that one is zero sized diff --git a/src/test/run-pass/tag-align-dyn-u64.rs b/src/test/run-pass/tag-align-dyn-u64.rs index a260ad66ce2..0fc20ef66b3 100644 --- a/src/test/run-pass/tag-align-dyn-u64.rs +++ b/src/test/run-pass/tag-align-dyn-u64.rs @@ -8,7 +8,7 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. -// ignore-linux #7340 fails on 32-bit linux +// ignore-linux #7340 fails on 32-bit Linux // ignore-macos #7340 fails on 32-bit macos use std::mem; diff --git a/src/test/run-pass/tag-align-dyn-variants.rs b/src/test/run-pass/tag-align-dyn-variants.rs index 1e22f0f3dee..130c2c5e2e3 100644 --- a/src/test/run-pass/tag-align-dyn-variants.rs +++ b/src/test/run-pass/tag-align-dyn-variants.rs @@ -8,7 +8,7 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. -// ignore-linux #7340 fails on 32-bit linux +// ignore-linux #7340 fails on 32-bit Linux // ignore-macos #7340 fails on 32-bit macos use std::mem; diff --git a/src/test/run-pass/tag-align-u64.rs b/src/test/run-pass/tag-align-u64.rs index f3996065936..8942e0b6b5d 100644 --- a/src/test/run-pass/tag-align-u64.rs +++ b/src/test/run-pass/tag-align-u64.rs @@ -8,7 +8,7 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. -// ignore-linux #7340 fails on 32-bit linux +// ignore-linux #7340 fails on 32-bit Linux // ignore-macos #7340 fails on 32-bit macos use std::mem; |
