summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorEinhard Leichtfuß <alguien@respiranto.de>2024-12-22 16:37:28 +0100
committerEinhard Leichtfuß <alguien@respiranto.de>2024-12-22 16:37:28 +0100
commitd66984da0a9c85399da30811e2006c8e609965fd (patch)
tree199b4097a319e808ce82a1ee871ba11ba4cf8cd6 /README.md
parent320691f312287575140bde777a11035166fc53a0 (diff)
Fix syntax in README
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index f495b5b..a10be43 100644
--- a/README.md
+++ b/README.md
@@ -7,9 +7,9 @@
* Install `src/basic.bash` to `/path/to/basic.bash.`
* At the very beginning of a script (after the shebang):
- `include /path/to/basic.bash || exit 1`
-* If a script includes other libraries, these should be included after
- `basic.bash`, which will then also apply to those.
+ `source /path/to/basic.bash || exit 1`
+* If a script includes (`source`s) other libraries, these should be included
+ after `basic.bash`, which will then also apply to those.
* The `basic.bash` library should not be included in other libraries, except
when these are meant as wrappers of `basic.bash`, providing additional
functionality.