diff options
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -6,7 +6,7 @@ It doesn't control errors for the moment so be careful with what you do. ## Usage -`(src atom)` and `(src html)` are libraries you can use independently as in +`(ss atom)` and `(ss html)` are libraries you can use independently as in `tests/`, but the magic comes when you read the basic Format (see below) as a generic generator. @@ -14,9 +14,9 @@ The following script shows one way to do it: ``` scm (define-module (scripts create) - #:use-module ((src atom) #:prefix atom:) - #:use-module ((src html) #:prefix html:) - #:use-module (src as)) + #:use-module ((ss atom) #:prefix atom:) + #:use-module ((ss html) #:prefix html:) + #:use-module (ss as)) (define root (canonicalize-path (cadr (command-line)))) |