Skip to content

Commit ee38623

Browse files
garethgareth
authored andcommitted
---
yaml --- r: 54545 b: refs/heads/snap-stage3 c: 622bb63 h: refs/heads/master i: 54543: 04f2f58 v: v3
1 parent a16b5e2 commit ee38623

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
@@ -1,7 +1,7 @@
11
---
22
refs/heads/master: 5f13e9ccc2e3328d4cd8ca49f84e6840dd998346
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
4-
refs/heads/snap-stage3: e081c17805203b5e87073e2c766280a84b08e52c
4+
refs/heads/snap-stage3: 622bb6300f8b4e5a644088fe471e63b580b03453
55
refs/heads/try: 8eb2bab100b42f0ba751552d8eff00eb2134c55a
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b

branches/snap-stage3/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)