about summary refs log tree commit diff
path: root/src/libstd/sys
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2016-05-07 12:36:18 -0700
committerbors <bors@rust-lang.org>2016-05-07 12:36:18 -0700
commitd91f8ab0f58fa123857d96b9e151fc5185f5ff08 (patch)
tree4a21bdfb7f514938fb2996d83ac0b97b544464ab /src/libstd/sys
parent936b32a514b73c1d3dfcbd9d17818f9f18bf4883 (diff)
parent84e27738effd0c44f0dc480753fc0affa56fd4a4 (diff)
downloadrust-d91f8ab0f58fa123857d96b9e151fc5185f5ff08.tar.gz
rust-d91f8ab0f58fa123857d96b9e151fc5185f5ff08.zip
Auto merge of #33487 - steveklabnik:rollup, r=steveklabnik
Rollup of 20 pull requests

- Successful merges: #33256, #33283, #33313, #33314, #33326, #33336, #33382, #33384, #33402, #33409, #33410, #33412, #33428, #33430, #33437, #33438, #33439, #33442, #33456, #33459
- Failed merges:
Diffstat (limited to 'src/libstd/sys')
-rw-r--r--src/libstd/sys/unix/process.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/sys/unix/process.rs b/src/libstd/sys/unix/process.rs
index 270c2096b2c..0500480add2 100644
--- a/src/libstd/sys/unix/process.rs
+++ b/src/libstd/sys/unix/process.rs
@@ -147,7 +147,7 @@ impl Command {
         let new_key = pair_to_key(key, val, &mut self.saw_nul);
         let (map, envp) = self.init_env_map();
 
-        // If `key` is already present then we we just update `envp` in place
+        // If `key` is already present then we just update `envp` in place
         // (and store the owned value), but if it's not there we override the
         // trailing NULL pointer, add a new NULL pointer, and store where we
         // were located.