Skip to content

Random typos #50

New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Merged
merged 2 commits into from Oct 31, 2015
Merged
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 ides/emacs-setup.html
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@ <h2 id="once-you-are-set-up">Once you are set up&#8230;</h2>
<p>When you load a Lisp file and want to engage SLIME, <code>M-x slime</code> will do the trick.</p>
<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>
<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>
<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>
<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>
<hr/>
2 changes: 1 addition & 1 deletion project/basic-project.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ <h1 class="title">Basic Project</h1>
<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>
<p>Common libraries are installed using <a href="http://www.quicklisp.org/">Quicklisp</a>!</p>
<p>Go over there and install it, then come back to this tutorial.</p>
<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>
<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>
<p>Without examining the details of the Trotter, notice that there&#8217;s a line:</p>
<p><code>(ql:quickload '(:drakma :split-sequence :cl-ppcre :babel))</code></p>
<p>This tells Quicklisp to ensure that the libraries DRAKMA, SPLIT-SEQUENCE, CL-PPCRE, and BABEL are loaded.</p>
Expand Down