Skip to content

Commit 84d77cf

Browse files
committed
Update the book
1 parent 7f7a914 commit 84d77cf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/environments.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ <h2><span class="header-section-number">8.4</span> Assignment</h2>
485485

486486
new
487487
## &quot;Hello Active&quot;</code></pre>
488-
<p>This arrangement creates a quandry for R whenever R runs a function. Many functions save temporary objects that help them do their jobs. For example, the <code>roll</code> function from <a href="project-1-weighted-dice.html#project-1-weighted-dice">Project 1: Weighted Dice</a> saved an object named <code>die</code> and an object named <code>dice</code>:</p>
488+
<p>This arrangement creates a quandary for R whenever R runs a function. Many functions save temporary objects that help them do their jobs. For example, the <code>roll</code> function from <a href="project-1-weighted-dice.html#project-1-weighted-dice">Project 1: Weighted Dice</a> saved an object named <code>die</code> and an object named <code>dice</code>:</p>
489489
<pre class="sourceCode r"><code class="sourceCode r">roll &lt;-<span class="st"> </span><span class="cf">function</span>() {
490490
die &lt;-<span class="st"> </span><span class="dv">1</span><span class="op">:</span><span class="dv">6</span>
491491
dice &lt;-<span class="st"> </span><span class="kw">sample</span>(die, <span class="dt">size =</span> <span class="dv">2</span>, <span class="dt">replace =</span> <span class="ot">TRUE</span>)

0 commit comments

Comments
 (0)