diff options
| author | Einhard Leichtfuß <alguien@respiranto.de> | 2024-12-22 16:37:28 +0100 |
|---|---|---|
| committer | Einhard Leichtfuß <alguien@respiranto.de> | 2024-12-22 16:37:28 +0100 |
| commit | d66984da0a9c85399da30811e2006c8e609965fd (patch) | |
| tree | 199b4097a319e808ce82a1ee871ba11ba4cf8cd6 | |
| parent | 320691f312287575140bde777a11035166fc53a0 (diff) | |
Fix syntax in README
| -rw-r--r-- | README.md | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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. |
