From dcc2879266ee6e733a4729b425da0ff25aeebd1f Mon Sep 17 00:00:00 2001 From: Steve Klabnik Date: Sun, 19 May 2013 22:40:13 -0600 Subject: [PATCH] Add a few 'function's. This is now 100% consistent. Whoops! --- src/libcore/io.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libcore/io.rs b/src/libcore/io.rs index 8be02947ddb2..ad4ced47ae54 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 *