Skip to content

Commit

Permalink
Merge pull request #8 from fintelia/missing-doc-comment
Browse files Browse the repository at this point in the history
Fix missing doc comment
  • Loading branch information
fintelia authored Oct 2, 2023
2 parents 463b86a + 53cf9f8 commit 18867ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/decoder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -498,7 +498,7 @@ impl<R: Read + Seek> WebPDecoder<R> {
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<Option<Vec<u8>>, DecodingError> {
self.read_chunk(WebPRiffChunk::XMP, self.memory_limit)
}
Expand Down

0 comments on commit 18867ec

Please sign in to comment.