Fix a typo.

This commit is contained in:
KAMADA Ken'ichi 2017-01-12 21:52:31 +09:00
parent 906a25cb31
commit 00c369e092
1 changed files with 1 additions and 1 deletions

View File

@ -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<Field>, bool), Error> {
// Check the byte order and call the real parser.
if data.len() < 8 {