aboutsummaryrefslogtreecommitdiff
path: root/doc/user/start.skb
diff options
context:
space:
mode:
authorLudovic Courtès2008-03-31 17:35:56 +0200
committerLudovic Courtès2008-03-31 17:35:56 +0200
commit32ac2083ec2bd39c9b1c4f3b5047dfb1b2b81e8d (patch)
treef1af56344c780e423d1be3707b0e64fe69355822 /doc/user/start.skb
parentd9d11d517d07103690fd081b60c10fdb234ff12a (diff)
downloadskribilo-32ac2083ec2bd39c9b1c4f3b5047dfb1b2b81e8d.tar.gz
skribilo-32ac2083ec2bd39c9b1c4f3b5047dfb1b2b81e8d.tar.lz
skribilo-32ac2083ec2bd39c9b1c4f3b5047dfb1b2b81e8d.zip
doc: Fix "Hello World" examples.
* doc/user/start.skb, doc/user/src/start?.skb: Fix inconsistencies. Reported by R. Clayton <rvclayton@acm.org>.
Diffstat (limited to 'doc/user/start.skb')
-rw-r--r--doc/user/start.skb9
1 files changed, 5 insertions, 4 deletions
diff --git a/doc/user/start.skb b/doc/user/start.skb
index cea5417..addb51c 100644
--- a/doc/user/start.skb
+++ b/doc/user/start.skb
@@ -1,6 +1,6 @@
;;; start.skb -- Getting started with Skribilo
;;;
-;;; Copyright 2007 Ludovic Courtès <ludo@gnu.org>
+;;; Copyright 2007, 2008 Ludovic Courtès <ludo@gnu.org>
;;; Copyright 2003, 2004 Manuel Serrano
;;;
;;;
@@ -47,7 +47,7 @@ The HTML source file for such a page should look like:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
-<TITLE>Hello world Example</TITLE>
+<TITLE>Hello World Example</TITLE>
</HEAD>
<BODY>
<H1>Hello World!</H1>
@@ -76,7 +76,7 @@ The HTML source file for such a document should look like:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<HTML>
<HEAD>
-<TITLE>Hello world Example</TITLE>
+<TITLE>Hello World Example</TITLE>
</HEAD>
<BODY>
<H1>Hello World!</H1>
@@ -172,7 +172,8 @@ can be used to ease the construction of such documents as illustrated below.
This text has been generated with the following piece of code
,(prgm :language skribe [
(itemize
- (map (lambda (x) (item \[The square of \,(bold x) is \,(bold (* x x))\]))
+ (map (lambda (x)
+ (item \[The square of \,(bold x) is \,(bold (* x x))\]))
'(1 2 3 4 5 6 7 8 9)))
])]))