Skip to content

Fix double use of _node_ variable in Node Map Generation #12

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 2, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3468,7 +3468,7 @@ <h3>Algorithm</h3>
member of <var>node map</var> using the variable <var>graph</var>. If the
<var>active subject</var> is <code>null</code>, set <var>node</var> to <code>null</code>
otherwise reference the <var>active subject</var> member of <var>graph</var> using the
variable <var>node</var>.</li>
variable <var>subject node</var>.</li>
<li>If <var>element</var> has an <code>@type</code> member, perform for each
<var>item</var> the following steps:
<ol>
Expand All @@ -3481,12 +3481,12 @@ <h3>Algorithm</h3>
<ol>
<li>If <var>list</var> is <code>null</code>:
<ol>
<li>If <var>node</var> does not have an <var>active property</var> member,
<li>If <var>subject node</var> does not have an <var>active property</var> member,
create one and initialize its value to an <a>array</a>
containing <var>element</var>.</li>
<li>Otherwise, compare <var>element</var> against every item in the
<a>array</a> associated with the <var>active property</var>
member of <var>node</var>. If there is no item equivalent to <var>element</var>,
member of <var>subject node</var>. If there is no item equivalent to <var>element</var>,
append <var>element</var> to the <a>array</a>. Two
<a class="changed">dictionaries</a> are considered
equal if they have equivalent key-value pairs.</li>
Expand All @@ -3505,7 +3505,7 @@ <h3>Algorithm</h3>
<var>active subject</var>, <var>active property</var>, and
<var>result</var> for <var>list</var>.</li>
<li>Append <var>result</var> to the value of the <var>active property</var> member
of <var>node</var>.</li>
of <var>subject node</var>.</li>
</ol>
</li>
<li>Otherwise <var>element</var> is a <a>node object</a>, perform
Expand Down Expand Up @@ -3544,12 +3544,12 @@ <h3>Algorithm</h3>
<code>@id</code> whose value is <var>id</var>.</li>
<li>If <var>list</var> is <code>null</code>:
<ol>
<li>If <var>node</var> does not have an <var>active property</var> member,
<li>If <var>subject node</var> does not have an <var>active property</var> member,
create one and initialize its value to an <a>array</a>
containing <var>reference</var>.</li>
<li>Otherwise, compare <var>reference</var> against every item in the
<a>array</a> associated with the <var>active property</var>
member of <var>node</var>. If there is no item equivalent to <var>reference</var>,
member of <var>subject node</var>. If there is no item equivalent to <var>reference</var>,
append <var>reference</var> to the <a>array</a>. Two
<a class="changed">dictionaries</a> are considered
equal if they have equivalent key-value pairs.</li>
Expand Down