Skip to content

Commit 60b5f05

Browse files
committed
Correct typos
Correct all typos found by cspell.
1 parent 40a531d commit 60b5f05

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/actions/jq_valid/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
name: 'jq_valid'
33
description:
4-
'Checks valididty of .json files with jq'
4+
'Checks validity of .json files with jq'
55
runs:
66
using: 'composite'
77
steps:

.github/actions/shellcheck/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
name: 'shellcheck'
33
description:
4-
'Chechs all shellscripts in repo'
4+
'Checks all shell scripts in repo'
55
runs:
66
using: 'composite'
77
steps:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# elo.h
2-
A simple library to compute [elo ratings](.https://en.wikipedia.org/wiki/Elo_rating_system). This is for educational purpose and licensed under MIT/public domain so you may use it. But the formulas are very simple so you probebly could also just copy them.
2+
A simple library to compute [elo ratings](.https://en.wikipedia.org/wiki/Elo_rating_system). This is for educational purpose and licensed under MIT/public domain so you may use it. But the formulas are very simple so you probably could also just copy them.
33

44
# Goals
55
- single header in style of [stb](https://github.com/nothings/stb)

scripts/jq_format.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ for FILE in $FILES; do
1111
elif [ "$1" == "--apply" ]; then
1212
cp "$FILE.temp" "$FILE"
1313
else
14-
printf "%s;; \`jq\` would format this file. Use \`./scripts/jq_format.sh --diff\` to see the changes it would make and \`./scripts/jq_format.sh --apply\` to aply them.\n" "$FILE"
14+
printf "%s;; \`jq\` would format this file. Use \`./scripts/jq_format.sh --diff\` to see the changes it would make and \`./scripts/jq_format.sh --apply\` to apply them.\n" "$FILE"
1515
fi
1616
fi
1717
rm "$FILE.diff"

0 commit comments

Comments
 (0)