diff options
author | Ekaitz Zarraga <ekaitz@elenq.tech> | 2025-10-07 15:15:58 +0200 |
---|---|---|
committer | Ekaitz Zarraga <ekaitz@elenq.tech> | 2025-10-07 15:15:58 +0200 |
commit | a1ed7b9f9954618e2ed4e14dd2dd3215ba7afd7d (patch) | |
tree | 5ce01882fb28f786ce6c362cb51d8809d641284c /README.md | |
parent | 656bca99b0b4c7130855cb01b30b944d4dcb4d12 (diff) |
API: move `src` to `ss`
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)))) |