summary refs log tree commit diff
path: root/src/libcore
diff options
context:
space:
mode:
authorBrian Anderson <banderson@mozilla.com>2012-05-21 21:30:26 -0700
committerBrian Anderson <banderson@mozilla.com>2012-05-21 21:30:26 -0700
commitc492a183d7e2c7bfb090940bb1e64b9ed83b0046 (patch)
treec24c9e93b8b0a4eea8b20df95befa7bf458b37b4 /src/libcore
parent2fa5a6631048459670ae4827d61aa83e87b8dfa4 (diff)
downloadrust-c492a183d7e2c7bfb090940bb1e64b9ed83b0046.tar.gz
rust-c492a183d7e2c7bfb090940bb1e64b9ed83b0046.zip
core: Fix typos in ignore attrs
Diffstat (limited to 'src/libcore')
-rw-r--r--src/libcore/rand.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcore/rand.rs b/src/libcore/rand.rs
index a75a7d05614..dedcf991670 100644
--- a/src/libcore/rand.rs
+++ b/src/libcore/rand.rs
@@ -284,7 +284,7 @@ mod tests {
 
     #[test]
     #[should_fail]
-    #[ignore(cfg(target_os = "win3"))]
+    #[ignore(cfg(target_os = "win32"))]
     fn gen_int_from_fail() {
         rand::rng().gen_int_range(5, -2);
     }
@@ -300,7 +300,7 @@ mod tests {
 
     #[test]
     #[should_fail]
-    #[ignore(cfg(target_os = "win3"))]
+    #[ignore(cfg(target_os = "win32"))]
     fn gen_uint_range_fail() {
         rand::rng().gen_uint_range(5u, 2u);
     }