about summary refs log tree commit diff
path: root/src/libstd/process.rs
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2015-03-27 10:07:48 -0700
committerAlex Crichton <alex@alexcrichton.com>2015-03-27 10:07:48 -0700
commit55c398d651e6b3e4f469325a35e029059ce36f1e (patch)
tree23da6bac0134a2989b539e57b0f50c48c6619775 /src/libstd/process.rs
parent88c3a0f423ea99be1e835b0dc24d3dcd5306a307 (diff)
parent3752958e4029e9d9cfb1ff020e92142b53fb810f (diff)
downloadrust-55c398d651e6b3e4f469325a35e029059ce36f1e.tar.gz
rust-55c398d651e6b3e4f469325a35e029059ce36f1e.zip
rollup merge of #23752: alexcrichton/remove-should-fail
This attribute has been deprecated in favor of #[should_panic]. This also
updates rustdoc to no longer accept the `should_fail` directive and instead
renames it to `should_panic`.
Diffstat (limited to 'src/libstd/process.rs')
-rw-r--r--src/libstd/process.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/process.rs b/src/libstd/process.rs
index 6a36ecefcf4..b4bd513e8f0 100644
--- a/src/libstd/process.rs
+++ b/src/libstd/process.rs
@@ -37,7 +37,7 @@ use thread;
 ///
 /// # Examples
 ///
-/// ```should_fail
+/// ```should_panic
 /// # #![feature(process)]
 ///
 /// use std::process::Command;