summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorEkaitz Zarraga <ekaitz@elenq.tech>2025-10-07 15:15:58 +0200
committerEkaitz Zarraga <ekaitz@elenq.tech>2025-10-07 15:15:58 +0200
commita1ed7b9f9954618e2ed4e14dd2dd3215ba7afd7d (patch)
tree5ce01882fb28f786ce6c362cb51d8809d641284c /README.md
parent656bca99b0b4c7130855cb01b30b944d4dcb4d12 (diff)
API: move `src` to `ss`
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/README.md b/README.md
index 32d46a3..b1a9f33 100644
--- a/README.md
+++ b/README.md
@@ -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))))