Improve "unhandled chunks" message

This commit is contained in:
Matteo Cypriani 2016-12-22 14:28:52 -05:00
parent 76c2a9201f
commit 56c7003468
1 changed files with 1 additions and 1 deletions

View File

@ -131,7 +131,7 @@ impl fmt::Display for NrgMetadata {
{}", chunk)),
}
if !self.skipped_chunks.is_empty() {
try!(write!(f, "\n\nUnhandled chunks present in this image:"));
try!(write!(f, "\n\nUnhandled NRG chunks present in this image:"));
for chunk_id in &self.skipped_chunks {
try!(write!(f, " {}", chunk_id));
}