Merge pull request #4 from kflu/master

Update doc.
pull/5/head
Kefei Lu 2018-04-02 15:25:37 -07:00 committed by GitHub
commit 554d3dbd4f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -55,8 +55,8 @@ As a complex example, [`man.ss`](man.ss) defines a online man-page lookup:
(chain ; chain functions together
(cond ; pick a manpage lookup based on OS
((equal? os "freebsd") (man-freebsd))
((equal? os "linux") (man-linux))
(else (man-freebsd)))
((equal? os "linux") (man-linux))
(else (man-freebsd)))
(truncate-string max-length)))) ; truncate output string to a max length
```