Skip to content

Commit cbde389

Browse files
pchampingkellogg
authored andcommitted
add missing parameter
In a number of places, the `inverse parameter` is missing from calls to the `IRI Compaction algorithm`. I have been assuming that the `inverse paramter` from the calling algorithm was always to be passed as is.
1 parent f190e24 commit cbde389

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

index.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3000,7 +3000,7 @@ <h3>Algorithm</h3>
30003000
in <var class="changed">nest result</var>.</li>
30013001
<li>Initialize <var>map key</var> to the result of calling the
30023002
<a href="#iri-compaction">IRI Compaction algorithm</a>
3003-
passing <var>active context</var> and the value of <code>@id</code> in <var>expanded item</var>
3003+
passing <var>active context</var>, <var>inverse context</var>, and the value of <code>@id</code> in <var>expanded item</var>
30043004
or <code>@none</code> if no such value exists as <var>var</var>, with <var>vocab</var> set to <code>true</code>
30053005
if there is no <code>@id</code> <a>entry</a> in <var>expanded item</var>.</li>
30063006
<li class="changed">If <var>compacted item</var> is not an
@@ -3052,24 +3052,24 @@ <h3>Algorithm</h3>
30523052
<li>Set <var>compacted item</var> to a new map containing
30533053
the key resulting from calling the <a
30543054
href="#iri-compaction">IRI Compaction algorithm</a>
3055-
passing <var>active context</var>, <code>@graph</code> as
3055+
passing <var>active context</var>, <var>inverse context</var>, <code>@graph</code> as
30563056
<var>var</var>, and <code>true</code> for
30573057
<var>vocab</var> using the original
30583058
<var>compacted item</var> as a value.</li>
30593059
<li>If expanded item contains an <code>@id</code> <a>entry</a>,
30603060
add the key resulting from calling the <a
30613061
href="#iri-compaction">IRI Compaction algorithm</a>
3062-
passing <var>active context</var>, <code>@id</code> as
3062+
passing <var>active context</var>, <var>inverse context</var>, <code>@id</code> as
30633063
<var>var</var>, and <code>true</code> for
30643064
<var>vocab</var> using the value resulting from calling the <a
30653065
href="#iri-compaction">IRI Compaction algorithm</a>
3066-
passing <var>active context</var>, the value of <code>@id</code>
3066+
passing <var>active context</var>, <var>inverse context</var>, the value of <code>@id</code>
30673067
in <var>expanded item</var> as
30683068
<var>var</var>.</li>
30693069
<li>If expanded item contains an <code>@index</code> <a>entry</a>,
30703070
add the key resulting from calling the <a
30713071
href="#iri-compaction">IRI Compaction algorithm</a>
3072-
passing <var>active context</var>, <code>@index</code> as
3072+
passing <var>active context</var>, <var>inverse context</var>, <code>@index</code> as
30733073
<var>var</var>, and <code>true</code> for
30743074
<var>vocab</var> using the value of <code>@index</code>
30753075
in <var>expanded item</var>.</li>
@@ -3095,7 +3095,7 @@ <h3>Algorithm</h3>
30953095
in <var class="changed">nest result</var>.</li>
30963096
<li>Set <var>container key</var> to the result of calling the
30973097
<a href="#iri-compaction">IRI Compaction algorithm</a>
3098-
passing <var>active context</var>,
3098+
passing <var>active context</var>, <var>inverse context</var>,
30993099
either <code>@language</code>, <code>@index</code>, <code>@id</code>, or <code>@type</code>
31003100
based on the contents of <var>container</var>, as <var>var</var>, and <code>true</code>
31013101
for <var>vocab</var>.</li>
@@ -3148,7 +3148,7 @@ <h3>Algorithm</h3>
31483148
set <var>compacted item</var> to an <a>array</a> containing that value.</li>
31493149
<li>If <var>map key</var> is <code>null</code>, set it to the result of calling the
31503150
<a href="#iri-compaction">IRI Compaction algorithm</a>
3151-
passing <var>active context</var>, <code>@none</code> as
3151+
passing <var>active context</var>, <var>inverse context</var>, <code>@none</code> as
31523152
<var>var</var>, and <code>true</code> for
31533153
<var>vocab</var>.</li>
31543154
<li>If <var>map key</var> is not an <a>entry</a> of <var>map object</var>,

0 commit comments

Comments
 (0)