diff options
| author | Steve Klabnik <steve@steveklabnik.com> | 2013-05-19 22:40:13 -0600 |
|---|---|---|
| committer | Steve Klabnik <steve@steveklabnik.com> | 2013-05-19 22:40:13 -0600 |
| commit | dcc2879266ee6e733a4729b425da0ff25aeebd1f (patch) | |
| tree | 6381e13b3b6f71fbec601717abad6b300deaddd7 | |
| parent | 1065a92bf3bbe1f4bb11b7b7268a91529bbf8f89 (diff) | |
| download | rust-dcc2879266ee6e733a4729b425da0ff25aeebd1f.tar.gz rust-dcc2879266ee6e733a4729b425da0ff25aeebd1f.zip | |
Add a few 'function's.
This is now 100% consistent. Whoops!
| -rw-r--r-- | src/libcore/io.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcore/io.rs b/src/libcore/io.rs index 8be02947ddb..ad4ced47ae5 100644 --- a/src/libcore/io.rs +++ b/src/libcore/io.rs @@ -92,7 +92,7 @@ pub trait Reader { * * The buffer must be at least `len` bytes long. * - * `read` is conceptually similar to C's `fread`. + * `read` is conceptually similar to C's `fread` function. * * # Examples * @@ -130,7 +130,7 @@ pub trait Reader { * Takes an optional SeekStyle, which affects how we seek from the * position. See `SeekStyle` docs for more details. * - * `seek` is conceptually similar to C's `fseek`. + * `seek` is conceptually similar to C's `fseek` function. * * # Examples * |
