diff --git a/src/decoder.rs b/src/decoder.rs index a2bfcc7..5a4c5f6 100644 --- a/src/decoder.rs +++ b/src/decoder.rs @@ -498,7 +498,7 @@ impl WebPDecoder { self.read_chunk(WebPRiffChunk::EXIF, self.memory_limit) } - // Returns the raw bytes of the XMP metadata, or None if there is no XMP metadata. + /// Returns the raw bytes of the XMP metadata, or None if there is no XMP metadata. pub fn xmp_metadata(&mut self) -> Result>, DecodingError> { self.read_chunk(WebPRiffChunk::XMP, self.memory_limit) }