From 00c369e0923bec5fd8566f60f090f172d869a8dd Mon Sep 17 00:00:00 2001 From: KAMADA Ken'ichi Date: Thu, 12 Jan 2017 21:52:31 +0900 Subject: [PATCH] Fix a typo. --- src/tiff.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tiff.rs b/src/tiff.rs index 32ffa2d..58aaa80 100644 --- a/src/tiff.rs +++ b/src/tiff.rs @@ -53,7 +53,7 @@ pub struct Field<'a> { /// /// Returns a Vec of Exif fields and a bool. /// The boolean value is true if the data is little endian. -/// If an error occured, `exif::Error` is returned. +/// If an error occurred, `exif::Error` is returned. pub fn parse_exif(data: &[u8]) -> Result<(Vec, bool), Error> { // Check the byte order and call the real parser. if data.len() < 8 {