Skip to content

Commit f2fd5fd

Browse files
committed
Merge pull request #50 from mordocai/fix_bad_link
Random typos
2 parents d0b371f + a1f199a commit f2fd5fd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: ides/emacs-setup.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,5 @@ <h2 id="once-you-are-set-up">Once you are set up&#8230;</h2>
3333
<p>When you load a Lisp file and want to engage SLIME, <code>M-x slime</code> will do the trick.</p>
3434
<p>Paredit is a popular Lisp editing mode that the engaged student will hear about. The author recommends getting comfortable with emacs and SLIME before using Paredit, it provides several automatic s-expression editing features that surprised him on first use.</p>
3535
<p>When you have configured your SLIME in a <code>fancy</code> fashion, you will find a SLIME REPL (Read Evaluate Print Loop) buffer created in your Emacs window.</p>
36-
<p>This provides an interactive view into Common Lisp. You can evaluate functions you are writing in the source file and immediately use them in the REPL. This provides a very fast &#8220;code and test&#8221; facility. p</p>
36+
<p>This provides an interactive view into Common Lisp. You can evaluate functions you are writing in the source file and immediately use them in the REPL. This provides a very fast &#8220;code and test&#8221; facility.</p>
3737
<hr/>

Diff for: project/basic-project.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ <h1 class="title">Basic Project</h1>
77
<p>We are going to assume that your first project is a small standalone program using one of the common libraries for Common Lisp. Since Common Lisp is a general purpose high-level programming language, it can handle any common high-level language task.</p>
88
<p>Common libraries are installed using <a href="http://www.quicklisp.org/">Quicklisp</a>!</p>
99
<p>Go over there and install it, then come back to this tutorial.</p>
10-
<p>Let&#8217;s assume for the purpose of the starting project that you want to recursively walk a web server and take some action based upon the internal contents. We&#8217;ve supplied a minimal (not very robust or general) solution in <code>web-trotter.lisp</code>, available from <a href="src/web-trotter.lisp">our site</a>.</p>
10+
<p>Let&#8217;s assume for the purpose of the starting project that you want to recursively walk a web server and take some action based upon the internal contents. We&#8217;ve supplied a minimal (not very robust or general) solution in <code>web-trotter.lisp</code>, available from <a href="/examples/src/web-trotter.lisp">our site</a>.</p>
1111
<p>Without examining the details of the Trotter, notice that there&#8217;s a line:</p>
1212
<p><code>(ql:quickload '(:drakma :split-sequence :cl-ppcre :babel))</code></p>
1313
<p>This tells Quicklisp to ensure that the libraries DRAKMA, SPLIT-SEQUENCE, CL-PPCRE, and BABEL are loaded.</p>

0 commit comments

Comments
 (0)