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
Git User committed Oct 10, 2024
1 parent f9cbb7b commit f667ff9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
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
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
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 f667ff9

Please sign in to comment.