Skip to content

Commit

Permalink
Fix tripleTerm delimiters and associated terminal descriptors.
Browse files Browse the repository at this point in the history
  • Loading branch information
gkellogg committed Aug 8, 2024
1 parent f346f95 commit 238e28e
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions spec/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -212,8 +212,8 @@ <h3>Triple Terms</h3>
<a href="#grammar-production-subject"><code>subject</code></a>,
<a href="#grammar-production-predicate"><code>predicate</code></a>, and
<a href="#grammar-production-object"><code>object</code></a>
preceded by <a href="#cp-double-lt"><code>&lt;&lt;</code></a>, and
followed by <a href="#cp-double-gt"><code>&gt;&gt;</code></a>.
preceded by <a href="#cp-double-lt-paren"><code>&lt;&lt;(</code></a>, and
followed by <a href="#cp-paren-double-gt"><code>)&gt;&gt;</code></a>.
Note that <a data-cite="RDF12-CONCEPTS#dfn-triple-term">triple terms</a>
may be nested.
</p>
Expand Down Expand Up @@ -636,9 +636,12 @@ <h2>Selected Terminal Literal Strings</h2>
<dl>
<dt id="cp-space"><code title="space">space</code></dt>
<dd><code class="codepoint">U+0020</code></dd>
<dt id="cp-double-lt"><code>&lt;&lt;</code></dt>
<dd>two concatenated less-than sign characters, each having the code point <code class="codepoint">U+003C</code></dd>
<dt id="cp-double-gt"><code>&gt;&gt;</code></dt>
<dt id="cp-double-lt-paren"><code>&lt;&lt;(</code></dt>
<dd>two concatenated less-than sign characters, each having the code point <code class="codepoint">U+003C</code>,
followed by a left parenthesis character, having the code point <code class="codepoint">U+0028</code></dd>
<dt id="cp-paren-double-gt"><code>)&gt;&gt;</code></dt>
<dd>a left parenthesis character, having the code point <code class="codepoint">U+0029</code>
followed by two concatenated greater-than sign characters, each having the code point <code class="codepoint">U+003E</code></dd>
<dd>two concatenated greater-than sign characters, each having the code point <code class="codepoint">U+003E</code></dd>
<dt id="cp-double-circumflex"><code>^^</code></dt>
<dd>two concatenated circumflex accent characters, each having the code point <code class="codepoint">U+005E</code></dd>
Expand Down

0 comments on commit 238e28e

Please sign in to comment.