Skip to content

Commit b114f05

Browse files
garethgareth
authored andcommitted
---
yaml --- r: 56713 b: refs/heads/try c: 622bb63 h: refs/heads/master i: 56711: 10442a9 v: v3
1 parent 0f7c1a9 commit b114f05

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
@@ -2,7 +2,7 @@
22
refs/heads/master: c081ffbd1e845687202a975ea2e698b623e5722f
33
refs/heads/snap-stage1: e33de59e47c5076a89eadeb38f4934f58a3618a6
44
refs/heads/snap-stage3: 79a2b2eafc3c766cecec8a5f76317693bae9ed17
5-
refs/heads/try: e081c17805203b5e87073e2c766280a84b08e52c
5+
refs/heads/try: 622bb6300f8b4e5a644088fe471e63b580b03453
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
88
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c

branches/try/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)