about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorkennytm <kennytm@gmail.com>2019-03-16 14:56:57 +0800
committerkennytm <kennytm@gmail.com>2019-03-16 22:40:39 +0800
commit08959313bebd77a02db2d036a5b39714cba930bc (patch)
treea964a8bd962616b65200af9fe2082c21962fe0bb /src/libstd
parent6ffcf97be5bf263ac79e7164592ce84514cde326 (diff)
parent41cdf07483ed39ccd85ce1c9ae7512ceb3bbb657 (diff)
downloadrust-08959313bebd77a02db2d036a5b39714cba930bc.tar.gz
rust-08959313bebd77a02db2d036a5b39714cba930bc.zip
Rollup merge of #59175 - Zoxc:fix-process-test, r=alexcrichton
Don't run test launching `echo` since that doesn't exist on Windows
Diffstat (limited to 'src/libstd')
-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 56840009344..ad86acbb47d 100644
--- a/src/libstd/process.rs
+++ b/src/libstd/process.rs
@@ -8,7 +8,7 @@
 //!
 //! The [`Command`] struct is used to configure and spawn processes:
 //!
-//! ```
+//! ```no_run
 //! use std::process::Command;
 //!
 //! let output = Command::new("echo")