More spelling corrections.

This commit is contained in:
Huon Wilson 2013-08-18 08:28:04 +10:00
parent 72fd02d939
commit 6440343a6c
9 changed files with 15 additions and 13 deletions

View file

@ -262,7 +262,7 @@ pub trait WriterByteConversions {
/// (8 bytes).
fn write_le_f64(&mut self, f: f64);
/// Write a litten-endian IEEE754 single-precision floating-point
/// Write a little-endian IEEE754 single-precision floating-point
/// (4 bytes).
fn write_le_f32(&mut self, f: f32);

View file

@ -430,7 +430,7 @@ pub trait Reader {
/// println(reader.read_line());
/// }
///
/// # Failue
/// # Failure
///
/// Returns `true` on failure.
fn eof(&mut self) -> bool;