Skip to content

Commit eba650e

Browse files
committed
removed RegExp & added nullable to match methods
1 parent 6ecff09 commit eba650e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

interface-spec.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -442,7 +442,7 @@ <h3><dfn>Source</dfn> interface</h3>
442442

443443
<pre class="idl">
444444
interface Source {
445-
Stream match(optional (Term or RegExp) subject, optional (Term or RegExp) predicate, optional (Term or RegExp) object, optional (Term or RegExp) graph);
445+
Stream match(optional Term? subject, optional Term? predicate, optional Term? object, optional Term? graph);
446446
};
447447
</pre>
448448

@@ -490,7 +490,7 @@ <h3><dfn>Store</dfn> interface</h3>
490490
<pre class="idl">
491491
interface Store {
492492
EventEmitter remove(Stream stream);
493-
EventEmitter removeMatches(optional (Term or RegExp) subject, optional (Term or RegExp) predicate, optional (Term or RegExp) object, optional (Term or RegExp) graph);
493+
EventEmitter removeMatches(optional Term? subject, optional Term? predicate, optional Term? object, optional Term? graph);
494494
EventEmitter deleteGraph((Term or string) graph);
495495
};
496496

0 commit comments

Comments
 (0)