diff options
| author | bors <bors@rust-lang.org> | 2014-05-22 20:56:18 -0700 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2014-05-22 20:56:18 -0700 |
| commit | 02117dd1bc10c65ca1f56fd81996a573c88ccfd5 (patch) | |
| tree | 37eef5dbc14141cacc83d97e025cc398a85f7508 /src/libstd/io/process.rs | |
| parent | ec0258a381b88b5574e3f8ce72ae553ac3a574b7 (diff) | |
| parent | d3fde8476b9cdce734dcec6b2003a482c5908235 (diff) | |
| download | rust-02117dd1bc10c65ca1f56fd81996a573c88ccfd5.tar.gz rust-02117dd1bc10c65ca1f56fd81996a573c88ccfd5.zip | |
auto merge of #14357 : huonw/rust/spelling, r=pnkfelix
The span on a inner doc-comment would point to the next token, e.g. the span for the `a` line points to the `b` line, and the span of `b` points to the `fn`.
```rust
//! a
//! b
fn bar() {}
```
Diffstat (limited to 'src/libstd/io/process.rs')
| -rw-r--r-- | src/libstd/io/process.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/io/process.rs b/src/libstd/io/process.rs index 7d84530282f..d2a83dd840d 100644 --- a/src/libstd/io/process.rs +++ b/src/libstd/io/process.rs @@ -123,7 +123,7 @@ impl Command { /// * Inherit the current process's environment /// * Inherit the current process's working directory /// * A readable pipe for stdin (file descriptor 0) - /// * A writeable pipe for stdour and stderr (file descriptors 1 and 2) + /// * A writeable pipe for stdout and stderr (file descriptors 1 and 2) /// /// Builder methods are provided to change these defaults and /// otherwise configure the process. |
