Skip to content

Commit b607594

Browse files
[pre-commit.ci] pre-commit autoupdate (#72)
* [pre-commit.ci] pre-commit autoupdate updates: - [github.com/astral-sh/ruff-pre-commit: v0.7.4 → v0.9.3](astral-sh/ruff-pre-commit@v0.7.4...v0.9.3) - [github.com/rbubley/mirrors-prettier: v3.3.3 → v3.4.2](rbubley/mirrors-prettier@v3.3.3...v3.4.2) - [github.com/codespell-project/codespell: v2.3.0 → v2.4.0](codespell-project/codespell@v2.3.0...v2.4.0) * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
1 parent 00b97d0 commit b607594

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

.pre-commit-config.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ repos:
1414
- id: trailing-whitespace
1515

1616
- repo: https://github.com/astral-sh/ruff-pre-commit
17-
rev: v0.7.4
17+
rev: v0.9.3
1818
hooks:
1919
- id: ruff-format
2020
exclude: ^content/week01/cleanup_bessel\.ipynb$
@@ -31,12 +31,12 @@ repos:
3131
- id: nbstripout
3232

3333
- repo: https://github.com/rbubley/mirrors-prettier
34-
rev: "v3.3.3"
34+
rev: "v3.4.2"
3535
hooks:
3636
- id: prettier
3737

3838
- repo: https://github.com/codespell-project/codespell
39-
rev: "v2.3.0"
39+
rev: "v2.4.0"
4040
hooks:
4141
- id: codespell
4242
args: ["-L", "hist,whet,classe,nd", "-w"]

content/week03/tdd.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ function should have and when to _stop_ coding.
5555

5656
## TDD
5757

58-
TDD is a fundamental apsect of agile software development where no code is
58+
TDD is a fundamental aspect of agile software development where no code is
5959
written without first having a test covering the feature. Development proceeds
6060
through a cycle of red, green, refactor.
6161

content/week10/rust_example/rust.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
# Intro to Rust
22

33
This is an introduction to some of the unique design of Rust. This is not
4-
comprehensive - the fantastic [Rust Book][] is much better if you want to fully learn
5-
Rust. Instead, we'll look at how it's different from what we've seen so far in Python,
6-
and discuss some of the aspects that make special, like how it is memory safe without
7-
resorting to a garbage collector, the trait system, and syntactic macros.
4+
comprehensive - the fantastic [Rust Book][] is much better if you want to fully
5+
learn Rust. Instead, we'll look at how it's different from what we've seen so
6+
far in Python, and discuss some of the aspects that make special, like how it is
7+
memory safe without resorting to a garbage collector, the trait system, and
8+
syntactic macros.
89

910
## Basic syntax
1011

0 commit comments

Comments
 (0)