]> gitweb.factorcode.org Git - factor.git/commitdiff
Adding missing semicolon to lisp-docs.factor
authorJames Cash <james.nvc@gmail.com>
Thu, 6 Nov 2008 05:08:39 +0000 (00:08 -0500)
committerJames Cash <james.nvc@gmail.com>
Thu, 6 Nov 2008 05:20:52 +0000 (00:20 -0500)
extra/lisp/lisp-docs.factor

index cdeafe3e02049bdcc2d2f3cba6ffd21a3f5b33e0..c970a1e0b7b943992c9abcab428cab6862b885aa 100644 (file)
@@ -2,11 +2,11 @@ IN: lisp
 USING: help.markup help.syntax ;
 HELP: <LISP
 { $description "parsing word which converts the lisp code between <LISP and LISP> into factor quotations and calls it" }
-{ $see-also lisp-string>factor }
+{ $see-also lisp-string>factor } ;
 
 HELP: lisp-string>factor
 { $values { "str"  "a string of lisp code" } { "quot" "the quotation the lisp compiles into" } }
-{ $description "Turns a string of lisp into a factor quotation" }
+{ $description "Turns a string of lisp into a factor quotation" } ;
 
 ARTICLE: "lisp" "Lisp in Factor"
 "This is a simple implementation of a Lisp dialect, which somewhat resembles Scheme." $nl