Skip to content

Commit

Permalink
TO=>PER
Browse files Browse the repository at this point in the history
  • Loading branch information
rwaldron committed Jul 28, 2016
1 parent 7de9677 commit b31aee6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/spec.html
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ <h1>Math.radians ( _degrees_ )</h1>

<emu-alg>
1. If _degrees_ is one of *NaN*, *+&infin;*, *-&infin;*, return _degrees_.
1. Let _radians_ be (_degrees_ &times; `Math.DEG_TO_RAD`).
1. Let _radians_ be (_degrees_ &times; `Math.DEG_PER_RAD`).
1. Return _radians_.
</emu-alg>
</emu-clause>
Expand All @@ -106,16 +106,16 @@ <h1>Math.degrees ( _radians_ )</h1>

<emu-alg>
1. If _radians_ is one of *NaN*, *+&infin;*, *-&infin;*, return _radians_.
1. Let _degrees_ be (_radians_ &times; `Math.RAD_TO_DEG`).
1. Let _degrees_ be (_radians_ &times; `Math.RAD_PER_DEG`).
1. Return _degrees_.
</emu-alg>
</emu-clause>


<emu-clause id="sec-math.rad_to_deg">
<h1>Math.RAD_TO_DEG</h1>
<h1>Math.RAD_PER_DEG</h1>

<p>The Number value of `Math.RAD_TO_DEG` is approximately 57.29577951308232.</p>
<p>The Number value of `Math.RAD_PER_DEG` is approximately 57.29577951308232.</p>

<table class="fraction">
<tr>
Expand All @@ -137,8 +137,8 @@ <h1>Math.RAD_TO_DEG</h1>
</emu-clause>

<emu-clause id="sec-math.deg_to_rad">
<h1>Math.DEG_TO_RAD</h1>
<p>The Number value of `Math.DEG_TO_RAD` is approximately 0.0174532925199432.</p>
<h1>Math.DEG_PER_RAD</h1>
<p>The Number value of `Math.DEG_PER_RAD` is approximately 0.0174532925199432.</p>

<table class="fraction">
<tr>
Expand Down

0 comments on commit b31aee6

Please sign in to comment.