From 07389e664006947289991eefd705844928d0d410 Mon Sep 17 00:00:00 2001 From: Laurenz Date: Mon, 26 Aug 2024 20:50:12 +0200 Subject: [PATCH] Fix signature of `output_intents` (#36) --- src/structure.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/structure.rs b/src/structure.rs index a5def42..68c1c43 100644 --- a/src/structure.rs +++ b/src/structure.rs @@ -133,7 +133,7 @@ impl<'a> Catalog<'a> { /// /// Each entry in the array is an [output intent /// dictionary.](writers::OutputIntent) - pub fn output_intents(&mut self) -> TypedArray<'_, Dict> { + pub fn output_intents(&mut self) -> TypedArray<'_, OutputIntent> { self.insert(Name(b"OutputIntents")).array().typed() } }