Skip to content

Commit ba88cd4

Browse files
Merge branch 'master' into fix-typo-Chapter11
2 parents 506b20d + 89d64d0 commit ba88cd4

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

chapter10_q_expressions.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ <h2 id='builtin_functions'>Builtin Functions</h2> <hr/>
138138

139139
<table class='table'>
140140
<tr><td><code>list</code></td><td>Takes one or more arguments and returns a new Q-Expression containing the arguments</td></tr>
141-
<tr><td><code>head</code></td><td>Takes a Q-Expression and returns a Q-Expression with only of the first element</td></tr>
141+
<tr><td><code>head</code></td><td>Takes a Q-Expression and returns a Q-Expression with only the first element</td></tr>
142142
<tr><td><code>tail</code></td><td>Takes a Q-Expression and returns a Q-Expression with the first element removed</td></tr>
143143
<tr><td><code>join</code></td><td>Takes one or more Q-Expressions and returns a Q-Expression of them conjoined together</td></tr>
144144
<tr><td><code>eval</code></td><td>Takes a Q-Expression and evaluates it as if it were a S-Expression</td></tr>

chapter4_interactive_prompt.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ <h3>Compiling with Editline</h3>
186186

187187
<h2 id='the_c_preprocessor'>The C Preprocessor</h2> <hr/>
188188

189-
<p>For such a small project it might be okay that we have to program differently depending on what operating system we are using, but if I want to send my source code to a friend on different operating system to give me a hand with the programming, it is going to cause problems. In an ideal world I'd wish for my source code to be able to compile no matter where, or on what computer, it is being compiled. This is a general problem in C, and it is called <em>portability</em>. There is not always an easy or correct solution.</p>
189+
<p>For such a small project it might be okay that we have to program differently depending on what operating system we are using, but if I want to send my source code to a friend on a different operating system to give me a hand with the programming, it is going to cause problems. In an ideal world I'd wish for my source code to be able to compile no matter where, or on what computer, it is being compiled. This is a general problem in C, and it is called <em>portability</em>. There is not always an easy or correct solution.</p>
190190

191191
<div class='pull-right alert alert-warning' style="margin: 15px; text-align: center;">
192192
<img src="/static/img/octopus.png" alt="octopus" class="img-responsive" width="266px" height="268px"/>

chapter7_evaluation.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ <h2 id='trees'>Trees</h2> <hr/>
5757

5858
<h2 id='recursion'>Recursion</h2> <hr/>
5959

60-
<p>There is a odd thing about this tree structure. It refers to itself. Each of its children are themselves trees again, and the children of those children are trees yet again. Just like our languages and re-write rules, data in this structure contains repeated substructures that resemble their parents.</p>
60+
<p>There is an odd thing about this tree structure. It refers to itself. Each of its children are themselves trees again, and the children of those children are trees yet again. Just like our languages and re-write rules, data in this structure contains repeated substructures that resemble their parents.</p>
6161

6262
<div class='pull-right alert alert-warning' style="margin: 15px; text-align: center;">
6363
<img src="/static/img/recursion.png" alt="recursion" class="img-responsive" width="302px" height="371px"/>

0 commit comments

Comments
 (0)