Skip to content

Commit 13ed1e4

Browse files
committed
make termType and value in Quad mandatory
1 parent adc3d65 commit 13ed1e4

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

index.html

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -320,8 +320,8 @@ <h3><dfn>Quad</dfn> interface</h3>
320320

321321
<pre class="idl">
322322
interface Quad : Term {
323-
attribute string? termType;
324-
attribute string? value;
323+
attribute string termType;
324+
attribute string value;
325325
attribute Term subject;
326326
attribute Term predicate;
327327
attribute Term object;
@@ -331,11 +331,10 @@ <h3><dfn>Quad</dfn> interface</h3>
331331
</pre>
332332

333333
<p>
334-
<dfn>termType</dfn> contains the constant <code>"Quad"</code> or <code>undefined</code> if the
335-
implementation does not support RDF*.
334+
<dfn>termType</dfn> contains the constant <code>"Quad"</code>.
336335
</p>
337336
<p>
338-
<dfn>value</dfn> contains the constant <code>undefined</code>.
337+
<dfn>value</dfn> contains an empty string as constant value.
339338
</p>
340339
<p>
341340
<dfn>subject</dfn> the subject, which is a <code>NamedNode</code>, <code>BlankNode</code>,

0 commit comments

Comments
 (0)