Skip to content

Commit f8b5489

Browse files
ci: Check for typos, fix typo (#95)
1 parent 19d5269 commit f8b5489

File tree

3 files changed

+38
-1
lines changed

3 files changed

+38
-1
lines changed

.github/workflows/check.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,12 @@ jobs:
1717
uses: shalzz/[email protected]
1818
env:
1919
BUILD_ONLY: true
20+
21+
# If this fails, consider changing your text or adding something to .typos.toml.
22+
typos:
23+
runs-on: ubuntu-latest
24+
steps:
25+
- uses: actions/checkout@v4
26+
27+
- name: check typos
28+
uses: crate-ci/[email protected]

.typos.toml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# See the configuration reference at
2+
# https://github.com/crate-ci/typos/blob/master/docs/reference.md
3+
4+
[default]
5+
extend-ignore-re = ["colour-science"]
6+
7+
# Corrections take the form of a key/value pair. The key is the incorrect word
8+
# and the value is the correct word. If the key and value are the same, the
9+
# word is treated as always correct. If the value is an empty string, the word
10+
# is treated as always incorrect.
11+
12+
# Match Identifier - Case Sensitive
13+
[default.extend-identifiers]
14+
LOD = "LOD"
15+
relm = "relm"
16+
Stoer = "Stoer"
17+
18+
# Match Inside a Word - Case Insensitive
19+
[default.extend-words]
20+
21+
[files]
22+
# Include .github, .cargo, etc.
23+
ignore-hidden = false
24+
extend-exclude = [
25+
# /.git isn't in .gitignore, because git never tracks it.
26+
# Typos doesn't know that, though.
27+
"/.git",
28+
]

content/blog/2024-08-24-roadmap-may-2024-retro.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ This was presented at ACM High Performance Graphics (HPG) 2024, placing 3rd Plac
8787

8888
### Write “pass order” RFC [(original)](@/blog/2024-06-17-roadmap-may-2024.md#write-pass-order-rfc)
8989

90-
- **Prioriy**: High
90+
- **Priority**: High
9191
- **Status**: [rfcs#7](https://github.com/linebender/rfcs/pull/7) is in draft, and several important parts of the RFC have been completed.
9292

9393
### Rewrite documentation [(original)](@/blog/2024-06-17-roadmap-may-2024.md#rewrite-documentation)

0 commit comments

Comments
 (0)