From 9dce2590c31991111d720e766856eaed9861b63d Mon Sep 17 00:00:00 2001 From: KAMADA Ken'ichi Date: Fri, 30 Dec 2016 23:22:13 +0900 Subject: [PATCH] Change a comment on get_exif_attr() to a doc comment. --- src/jpeg.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/jpeg.rs b/src/jpeg.rs index 654e455..679fc63 100644 --- a/src/jpeg.rs +++ b/src/jpeg.rs @@ -48,7 +48,7 @@ mod marker { // Exif identifier code "Exif\0\0". [EXIF23 4.7.2] const EXIF_ID: [u8; 6] = [0x45, 0x78, 0x69, 0x66, 0x00, 0x00]; -// Get the Exif attribute information segment from a JPEG file. +/// Get the Exif attribute information segment from a JPEG file. pub fn get_exif_attr(reader: &mut R) -> Result, Error> where R: io::BufRead { match get_exif_attr_sub(reader) {