Skip to content

Commit 622bb63

Browse files
garethgareth
gareth
authored and
gareth
committed
Update doc-comments to reflect the current year and trait
names now being capitalized.
1 parent e081c17 commit 622bb63

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

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)