Skip to content

Commit

Permalink
Clean up spec text a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
kenchris committed Dec 15, 2016
1 parent 3df8f7a commit 31f798c
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2099,32 +2099,32 @@ <h3>
for processing the <code>scope</code> member of a service worker</a>
passing <var>unprocessed registration</var>.
</li>
<li>If <var>scope</var> is not <code>undefined</code>,
set <var>registration</var>'s <code>scope</code>
<li>If <var>scope</var> is <code>undefined</code> abort these steps and
return <code>undefined</code>.
</li>
<li>Otherwise, set <var>registration</var>'s <code>scope</code>
property to be <var>scope</var>.
</li>
<li>Let <var>type</var> be the result of running the <a>steps
for processing the <code>type</code> member of a service worker</a>
passing <var>unprocessed registration</var>.
</li>
<li>If <var>type</var> is not <code>undefined</code>
set <var>registration</var>'s <code>type</code>
property to be <var>type</var>.
</li>
<li>If <var>type</var> is <code>undefined</code> abort these steps and
return <code>undefined</code>.
</li>
<li>Otherwise, set <var>registration</var>'s <code>type</code>
property to be <var>type</var>.
</li>
<li>Let <var>use cache</var> be the result of running the <a>steps
for processing the <code>use_cache</code> member of a service worker</a>
passing <var>unprocessed registration</var>.
</li>
<li>If <var>use cache</var> is not <code>undefined</code>,
set <var>registration</var>'s <code>use_cache</code>
property to be <var>use cache</var>.
</li>
<li>If <var>use cache</var> is <code>undefined</code> abort these steps
and return <code>undefined</code>.
</li>
<li>Otherwise, set <var>registration</var>'s <code>use_cache</code>
property to be <var>use cache</var>.
</li>
<li>Return <var>registration</var>.
</li>
</ol>
Expand Down

0 comments on commit 31f798c

Please sign in to comment.