Skip to content
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

Fix Typo #71

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion bredesign/source/index.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@
<p>Your code will rarely contain free-floating literals, of course, since
they don't actually <em>do</em> anything on their own. Instead, you'll use
literals in operations. Operations are how you <em>do things</em>. All
operations take the form, "opening parthensis, operator, operands,
operations take the form, "opening parenthesis, operator, operands,
closing parenthesis":</p>
<div class="code pygments"><div class="highlight"><pre><span class="p">(</span><span class="nf">operator</span> <span class="nv">operand1</span> <span class="nv">operand2</span> <span class="nv">...</span> <span class="nv">operandn</span><span class="p">)</span></pre></div></div>
<p>Notice that there are no commas. Clojure uses whitespace to separate
Expand Down
2 changes: 1 addition & 1 deletion content/do-things.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ literal representations are all valid forms:
Your code will rarely contain free-floating literals, of course, since
they don't actually *do* anything on their own. Instead, you'll use
literals in operations. Operations are how you *do things*. All
operations take the form, "opening parthensis, operator, operands,
operations take the form, "opening parenthesis, operator, operands,
closing parenthesis":

```clojure
Expand Down
2 changes: 1 addition & 1 deletion content/functional-programming.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ perform them, which lets you put them on autopilot.
### Pure Functions Have No Side Effects

To perform a side effect is to change the association between a name
and its value within a given scope. For example, in Javscript:
and its value within a given scope. For example, in Javascript:

```javascript
var haplessObject = {
Expand Down