From 1ea96f4c7f9e2d59935e8492c5c18671d0245c23 Mon Sep 17 00:00:00 2001 From: madelson <1269046+madelson@users.noreply.github.com> Date: Tue, 19 Nov 2024 21:59:29 -0500 Subject: [PATCH] fix attribute warning message --- .../Export/AltoXmlTextExporter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/UglyToad.PdfPig.DocumentLayoutAnalysis/Export/AltoXmlTextExporter.cs b/src/UglyToad.PdfPig.DocumentLayoutAnalysis/Export/AltoXmlTextExporter.cs index 0ffa2346..62a86d69 100644 --- a/src/UglyToad.PdfPig.DocumentLayoutAnalysis/Export/AltoXmlTextExporter.cs +++ b/src/UglyToad.PdfPig.DocumentLayoutAnalysis/Export/AltoXmlTextExporter.cs @@ -110,7 +110,7 @@ public string Get(PdfDocument document, bool includePaths = false) /// /// The page to export the XML layout for. #if NET6_0_OR_GREATER - [RequiresUnreferencedCode("Members from PageXmlDocument may be trimmed if not referenced directly")] + [RequiresUnreferencedCode("Members from AltoDocument may be trimmed if not referenced directly")] #endif public string Get(Page page) => Get(page, false);