Skip to content

Commit 62c2dfb

Browse files
garethgareth
authored andcommitted
---
yaml --- r: 57307 b: refs/heads/incoming c: 622bb63 h: refs/heads/master i: 57305: 0bb1b0d 57303: f900df3 v: v3
1 parent c6dcaf9 commit 62c2dfb

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ refs/heads/try: bf67eb2362b7d0f37012f2d6dac604c3bbacd2c6
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c
9-
refs/heads/incoming: e081c17805203b5e87073e2c766280a84b08e52c
9+
refs/heads/incoming: 622bb6300f8b4e5a644088fe471e63b580b03453
1010
refs/heads/dist-snap: 00dbbd01c2aee72982b3e0f9511ae1d4428c3ba9
1111
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1212
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/incoming/src/libcore/run.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
1+
// Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT
22
// file at the top-level directory of this distribution and at
33
// http://rust-lang.org/COPYRIGHT.
44
//
@@ -44,13 +44,13 @@ pub trait Program {
4444
/// Returns the process id of the program
4545
fn get_id(&mut self) -> pid_t;
4646

47-
/// Returns an io::writer that can be used to write to stdin
47+
/// Returns an io::Writer that can be used to write to stdin
4848
fn input(&mut self) -> @io::Writer;
4949

50-
/// Returns an io::reader that can be used to read from stdout
50+
/// Returns an io::Reader that can be used to read from stdout
5151
fn output(&mut self) -> @io::Reader;
5252

53-
/// Returns an io::reader that can be used to read from stderr
53+
/// Returns an io::Reader that can be used to read from stderr
5454
fn err(&mut self) -> @io::Reader;
5555

5656
/// Closes the handle to the child processes standard input
@@ -200,9 +200,9 @@ pub fn run_program(prog: &str, args: &[~str]) -> int {
200200
}
201201

202202
/**
203-
* Spawns a process and returns a program
203+
* Spawns a process and returns a Program
204204
*
205-
* The returned value is a boxed class containing a <program> object that can
205+
* The returned value is a boxed class containing a <Program> object that can
206206
* be used for sending and receiving data over the standard file descriptors.
207207
* The class will ensure that file descriptors are closed properly.
208208
*

0 commit comments

Comments
 (0)