aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
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.