Skip to content

Commit

Permalink
PDF/UA-2. Fix error arguments for rules 8.2.5.23-1, 8.2.5.24-1
Browse files Browse the repository at this point in the history
  • Loading branch information
MaximPlusov authored and github-actions[bot] committed Oct 10, 2024
1 parent fce30e0 commit 2f34ce3
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions PDF_UA/PDFUA-2-ISO32005.xml
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@
<error>
<message>The Ruby structure element has invalid sequence of children: %1</message>
<arguments>
<argument>kidsStandardTypes.split('&amp;').toString()</argument>
<argument>kidsStandardTypes.replaceAll('&amp;', ',')</argument>
</arguments>
</error>
<references/>
Expand All @@ -309,7 +309,7 @@
<error>
<message>The Warichu structure element has invalid sequence of children: %1</message>
<arguments>
<argument>kidsStandardTypes.split('&amp;').toString()</argument>
<argument>kidsStandardTypes.replaceAll('&amp;', ',')</argument>
</arguments>
</error>
<references/>
Expand Down
4 changes: 2 additions & 2 deletions PDF_UA/PDFUA-2.xml
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@
<error>
<message>The Ruby structure element has invalid sequence of children: %1</message>
<arguments>
<argument>kidsStandardTypes.split('&amp;').toString()</argument>
<argument>kidsStandardTypes.replaceAll('&amp;', ',')</argument>
</arguments>
</error>
<references/>
Expand All @@ -309,7 +309,7 @@
<error>
<message>The Warichu structure element has invalid sequence of children: %1</message>
<arguments>
<argument>kidsStandardTypes.split('&amp;').toString()</argument>
<argument>kidsStandardTypes.replaceAll('&amp;', ',')</argument>
</arguments>
</error>
<references/>
Expand Down
4 changes: 2 additions & 2 deletions PDF_UA/WTPDF-1-0-Accessibility.xml
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@
<error>
<message>The Ruby structure element has invalid sequence of children: %1</message>
<arguments>
<argument>kidsStandardTypes.split('&amp;').toString()</argument>
<argument>kidsStandardTypes.replaceAll('&amp;', ',')</argument>
</arguments>
</error>
<references/>
Expand All @@ -261,7 +261,7 @@
<error>
<message>The Warichu structure element has invalid sequence of children: %1</message>
<arguments>
<argument>kidsStandardTypes.split('&amp;').toString()</argument>
<argument>kidsStandardTypes.replaceAll('&amp;', ',')</argument>
</arguments>
</error>
<references/>
Expand Down
4 changes: 2 additions & 2 deletions PDF_UA/WTPDF-1-0-Reuse.xml
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@
<error>
<message>The Ruby structure element has invalid sequence of children: %1</message>
<arguments>
<argument>kidsStandardTypes.split('&amp;').toString()</argument>
<argument>kidsStandardTypes.replaceAll('&amp;', ',')</argument>
</arguments>
</error>
<references/>
Expand All @@ -261,7 +261,7 @@
<error>
<message>The Warichu structure element has invalid sequence of children: %1</message>
<arguments>
<argument>kidsStandardTypes.split('&amp;').toString()</argument>
<argument>kidsStandardTypes.replaceAll('&amp;', ',')</argument>
</arguments>
</error>
<references/>
Expand Down

0 comments on commit 2f34ce3

Please sign in to comment.