Skip to content

Commit

Permalink
Resolve #307
Browse files Browse the repository at this point in the history
  • Loading branch information
petervwyatt committed Oct 24, 2023
1 parent 45815d7 commit 30c1cb0
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 1 deletion.
31 changes: 30 additions & 1 deletion docs/32000-2-2020/clause07.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,8 @@ modified: 24 October 2023
</li>
<li><a href="#H7.9.6">7.9.6 Name trees</a>
</li>
<li><a href="#H7.9.7">7.9.7 Number trees</a>
</li>
</ul>
</li>
<li>7.10 Functions
Expand Down Expand Up @@ -1285,7 +1287,8 @@ NOTE <ins onMouseEnter="mouseEnter(this)" data-issue="276">2</ins> The string ca
<p>(<i>Root and leaf nodes only; required in leaf nodes; present in the root node if and only if <b>Kids</b> is not present</i>) Shall be an array of the form</p>
<p>[<i>key<sub>1</sub> value<sub>1</sub> key<sub>2</sub> value<sub>2</sub> ...key<sub>n</sub> value<sub>n</sub></i>]</p>
<p>where each <i>key<sub>i</sub></i> shall be a string and the corresponding <i>value<sub>i</sub></i> shall be the
object associated with that key. The keys shall be sorted <del onMouseEnter="mouseEnter(this)" data-issue="214" data-iso="submitted">in lexical order</del>, as described below.</p>
object associated with that key. The keys shall be sorted <del onMouseEnter="mouseEnter(this)" data-issue="214" data-iso="submitted">in lexical order</del>, as described below.
<ins onMouseEnter="mouseEnter(this)" data-issue="307">Keys shall not be the <b>null</b> object.</ins></p>
</td>
</tr>
</table>
Expand All @@ -1301,6 +1304,32 @@ Any encoding of the keys may be used as long as it is self-consistent; keys shal

<p>...</p>

<h3 id="H7.9.7">7.9.7 Number trees</h3>

<p class="location">Change Table 37 as follows:</p>

<table>
<caption id="Table37">Table 37 - Entries in a number tree node dictionary</caption>
<tr>
<th>Key</th>
<th>Type</th>
<th>Value</th>
</tr>
<tr>
<td><b>Nums</b></td>
<td>array</td>
<td>
<p>(<i>Root and leaf nodes only; shall be required in leaf nodes; present in the root node if and only if <b>Kids</b> is not present</i>) Shall be an array of the form</p>
<p>[<i>key<sub>1</sub> value<sub>1</sub> key<sub>2</sub> value<sub>2</sub> ...key<sub>n</sub> value<sub>n</sub></i>]</p>
<p>where each <i>key<sub>i</sub></i> shall is an integer and the corresponding <i>value<sub>i</sub></i> shall be the
object associated with that key. The keys shall be sorted in numerical order, analogously to the arrangement of keys in a name tree as described in 7.9.6, "Name trees".
<ins onMouseEnter="mouseEnter(this)" data-issue="307">Keys shall not be the <b>null</b> object.</ins></p>
</td>
</tr>
</table>



<h2 id="H7.10">7.10 Functions</h2>
<h3 id="H7.10.3">7.10.3 Type 2 (exponential interpolation) functions</h3>

Expand Down
1 change: 1 addition & 0 deletions docs/32000-2-2020/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ All issues related to {{ page.subset }} are recorded in the PDF Association's <a
<li><a href="clause07.html#Table34">Table 34 - Entries in a resource dictionary</a></li>
<li><a href="clause07.html#Table35">Table 35 - PDF data types <ins onMouseEnter="mouseEnter(this)" data-issue="322">(informative)</ins></a></li>
<li><a href="clause07.html#Table36">Table 36 - Entries in a name tree node dictionary</a></li>
<li><a href="clause07.html#Table37">Table 37 - Entries in a number tree node dictionary</a></li>
<li><a href="clause07.html#Table42">Table 42 - Operators in Type 4 functions</a></li>
<li><a href="clause07.html#Table43">Table 43 - Entries in a file specification dictionary</a></li>
<li><a href="clause07.html#Table44">Table 44 - Additional entries in an embedded file stream dictionary</a></li>
Expand Down

0 comments on commit 30c1cb0

Please sign in to comment.