about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorPetr Zemek <s3rvac@gmail.com>2017-03-24 09:42:21 +0100
committerPetr Zemek <s3rvac@gmail.com>2017-03-24 09:42:21 +0100
commit9b0a4a4e97c4977aae45934d2138d8db27b16843 (patch)
tree1a737dc00557796b071efbab7a16fb38dbe7fb57 /src/libstd
parente703b33e3e03d1078c8825e1f64ecfb45884f5cb (diff)
downloadrust-9b0a4a4e97c4977aae45934d2138d8db27b16843.tar.gz
rust-9b0a4a4e97c4977aae45934d2138d8db27b16843.zip
Fix formatting in the docs for std::process::Command::envs().
An empty line between the "Basic usage:" text and the example is required to
properly format the code. Without the empty line, the example is not formatted
as code.
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/process.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libstd/process.rs b/src/libstd/process.rs
index 7a85e588662..b57a9883afe 100644
--- a/src/libstd/process.rs
+++ b/src/libstd/process.rs
@@ -437,6 +437,7 @@ impl Command {
     /// # Examples
     ///
     /// Basic usage:
+    ///
     /// ```no_run
     /// use std::process::{Command, Stdio};
     /// use std::env;