summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Clauss <cclauss@me.com>2024-01-25 01:03:18 +0100
committerGitHub <noreply@github.com>2024-01-25 00:03:18 +0000
commitebead95ac990db1257c7a46198e43c5bb0def593 (patch)
treee6982482d63bd49c60e96258854fd909d519e4ff
parent827e4e53d5302a68843e98e25e60656e9fcacd89 (diff)
Fix typos found by codespell (#1872)
-rw-r--r--CHANGELOG.md2
-rw-r--r--README.md4
-rwxr-xr-xwww/install.sh2
3 files changed, 4 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index d9a5af00..66ed58bd 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -227,7 +227,7 @@ Changelog
- Note that install.sh may fail on GitHub actions ([#1499](https://github.com/casey/just/pull/1499))
- Fix readme typo ([#1489](https://github.com/casey/just/pull/1489) by [auberisky](https://github.com/auberisky))
- Update install script and readmes to use tls v1.3 ([#1481](https://github.com/casey/just/pull/1481))
-- Renable install.sh test on CI([#1478](https://github.com/casey/just/pull/1478))
+- Re-enable install.sh test on CI([#1478](https://github.com/casey/just/pull/1478))
- Don't test install.sh on CI ([#1477](https://github.com/casey/just/pull/1477))
- Update Chinese translation of readme ([#1476](https://github.com/casey/just/pull/1476) by [hustcer](https://github.com/hustcer))
- Fix install.sh for Windows ([#1474](https://github.com/casey/just/pull/1474) by [bloodearnest](https://github.com/bloodearnest))
diff --git a/README.md b/README.md
index 5bf86eba..ca0039a7 100644
--- a/README.md
+++ b/README.md
@@ -2766,7 +2766,7 @@ directory.
Environment files are only loaded for the root justfile, and loaded environment
variables are available in submodules. Settings in submodules that affect
-enviroment file loading are ignored.
+environment file loading are ignored.
Recipes in submodules without the `[no-cd]` attribute run with the working
directory set to the directory containing the submodule source file.
@@ -2939,7 +2939,7 @@ foo argument:
```
This preserves `just`'s ability to catch variable name typos before running,
-for example if you were to write `{{arument}}`, but will not do what you want
+for example if you were to write `{{argument}}`, but will not do what you want
if the value of `argument` contains single quotes.
#### Positional Arguments
diff --git a/www/install.sh b/www/install.sh
index a97fa3db..683cd788 100755
--- a/www/install.sh
+++ b/www/install.sh
@@ -105,7 +105,7 @@ if [ -z ${tag-} ]; then
fi
if [ -z ${target-} ]; then
- # bash compiled with MINGW (e.g. git-bash, used in github windows runnners),
+ # bash compiled with MINGW (e.g. git-bash, used in github windows runners),
# unhelpfully includes a version suffix in `uname -s` output, so handle that.
# e.g. MINGW64_NT-10-0.19044
kernel=$(uname -s | cut -d- -f1)