Skip to content

Commit 927090a

Browse files
committed
Update the install
1 parent 01aec1c commit 927090a

File tree

3 files changed

+15
-9
lines changed

3 files changed

+15
-9
lines changed

docs/manual.scr

+8-5
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,12 @@
22

33
@title(Overview)
44

5-
Do you want to have your app look at config files, the environment, and command
6-
line to get your app's options, but don't want to have to actually @i(code) any of
7-
that stuff? Feel bogged down by write the same old I/O code for every app?
5+
Do you want to have your Common Lisp app look at config files, the environment,
6+
and command line to get your app's options, but don't want to have to actually
7+
@i(code) any of that stuff? Feel bogged down by write the same old I/O code for
8+
every app?
89

9-
Then CLIFF is for you!
10+
Then @link[uri="https://github.com/djha-skin/cliff"](CLIFF) is for you!
1011

1112
@end(section)
1213

@@ -22,7 +23,9 @@ The code discussed in this tutorial can be found
2223

2324
CLIFF is on @link[uri="https://github.com/ocicl/ocicl"](OCICL) and
2425
@link[uri="https://github.com/quicklisp/quicklisp-projects/issues/2458"](I'm
25-
trying to get it added on Quicklisp).
26+
trying to get it added on Quicklisp). Otherwise, just clone
27+
@link[uri="https://github.com/djha-skin/cliff"](the source code) out to your
28+
QuickLisp or ASDF local projects directory.
2629

2730
@end(section)
2831

docs/overview.html

+4-3
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,10 @@ <h1 class="doc-title">CLIFF: Command Line Interface Functional Framework</h1>
4949
<h2 class="section-title">Overview</h2>
5050
</header>
5151
<div class="content">
52-
<p>Do you want to have your app look at config files, the environment, and command
53-
line to get your app's options, but don't want to have to actually <i>code</i> any of
54-
that stuff? Feel bogged down by write the same old I/O code for every app?</p><p>Then CLIFF is for you!</p>
52+
<p>Do you want to have your Common Lisp app look at config files, the environment,
53+
and command line to get your app's options, but don't want to have to actually
54+
<i>code</i> any of that stuff? Feel bogged down by write the same old I/O code for
55+
every app?</p><p>Then <a href="https://github.com/djha-skin/cliff">CLIFF</a> is for you!</p>
5556
</div>
5657
</main>
5758
</article>

docs/tutorial.html

+3-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,9 @@ <h2 class="section-title">Tutorial</h2>
5252
<p>The code discussed in this tutorial can be found
5353
<a href="htps://github.com/djha-skin/calc">here</a>.</p><h1 id="install">Install</h1><p>CLIFF is on <a href="https://github.com/ocicl/ocicl">OCICL</a> and
5454
<a href="https://github.com/quicklisp/quicklisp-projects/issues/2458">I'm
55-
trying to get it added on Quicklisp</a>.</p><h1 id="up-and-running">Up and Running</h1><p>This is a CLI framework/library for the <i>impatient</i>, so
55+
trying to get it added on Quicklisp</a>. Otherwise, just clone
56+
<a href="https://github.com/djha-skin/cliff">the source code</a> out to your
57+
QuickLisp or ASDF local projects directory.</p><h1 id="up-and-running">Up and Running</h1><p>This is a CLI framework/library for the <i>impatient</i>, so
5658
let's make a CLI tool in Common Lisp <i>really fast</i>.</p><p>We'll make a CLI math calculator.</p><pre><code class="lisp">;;; calculator.lisp -- A CLI calculator.
5759
;;;;
5860
;;;; SPDX-FileCopyrightText: 2024 Daniel Jay Haskin

0 commit comments

Comments
 (0)