Fix comments on Value variants.

This commit is contained in:
KAMADA Ken'ichi 2016-12-30 23:19:02 +09:00
parent 3e05fa1a09
commit 2a0c4d9f61
1 changed files with 3 additions and 3 deletions

View File

@ -34,9 +34,9 @@ use endian::Endian;
pub enum Value<'a> { pub enum Value<'a> {
/// Vector of 8-bit unsigned integers. /// Vector of 8-bit unsigned integers.
Byte(Vec<u8>), Byte(Vec<u8>),
/// Slice of 8-bit bytes containing 7-bit ASCII characters. /// Vector of slices of 8-bit bytes containing 7-bit ASCII characters.
/// The trailing null character is not included. Note that /// The trailing null character is not included. Note that
/// the absence of the 8th bits is not guaranteed. /// the 8th bits may present if a non-conforming data is given.
Ascii(Vec<&'a [u8]>), Ascii(Vec<&'a [u8]>),
/// Vector of 16-bit unsigned integers. /// Vector of 16-bit unsigned integers.
Short(Vec<u16>), Short(Vec<u16>),
@ -63,7 +63,7 @@ pub enum Value<'a> {
/// Unused in the Exif specification. /// Unused in the Exif specification.
Double(Vec<f64>), Double(Vec<f64>),
/// The type is unknown to this implementation. /// The type is unknown to this implementation.
/// The associated values are the type and the count, and the /// The associated values are the type, the count, and the
/// offset of the "Value Offset" element. /// offset of the "Value Offset" element.
Unknown(u16, u32, u32), Unknown(u16, u32, u32),
} }