Skip to content

Commit 20540a1

Browse files
authored
Merge pull request #101 from rust-random/push-qwuswkqspomz
Use typos spellchecker
2 parents 410a418 + bcdc102 commit 20540a1

3 files changed

Lines changed: 8 additions & 2 deletions

File tree

.github/workflows/test.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,12 @@ jobs:
2020
use-linkcheck: true
2121
- run: mdbook build
2222

23+
typos:
24+
runs-on: ubuntu-latest
25+
steps:
26+
- uses: actions/checkout@v6
27+
- uses: crate-ci/typos@v1
28+
2329
code-samples:
2430
name: Test code samples
2531
runs-on: ubuntu-latest

src/SUMMARY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
- [Parallel RNGs](guide-parallel.md)
1919
- [Random values](guide-values.md)
2020
- [Random distributions](guide-dist.md)
21-
- [Random processess](guide-process.md)
21+
- [Random processes](guide-process.md)
2222
- [Sequences](guide-seq.md)
2323
- [Error handling](guide-err.md)
2424
- [Testing randomized functions](guide-test-fn-rng.md)

src/guide-parallel.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ fn main() {
135135
})
136136
.reduce(|| 0usize, |a, b| a + b);
137137

138-
// prints 3.1409052 (determinstic and reproducible result)
138+
// prints 3.1409052 (deterministic and reproducible result)
139139
println!(
140140
"π is approximately {}",
141141
4. * (in_circle as f64) / ((BATCH_SIZE * BATCHES) as f64)

0 commit comments

Comments
 (0)