Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -55,13 +55,13 @@ repos:
hooks:
- id: sync-pre-commit-deps

# - repo: https://github.com/codespell-project/codespell
# rev: v2.2.4
# hooks:
# - id: codespell
# additional_dependencies:
# - tomli
# files: "codegen-backend/docs/.*/.*.mdx"
- repo: https://github.com/codespell-project/codespell
rev: v2.2.4
hooks:
- id: codespell
additional_dependencies:
- tomli
files: "docs/.*/.*.mdx"

- repo: https://github.com/fpgmaas/deptry.git
rev: "0.22.0"
Expand Down
2 changes: 1 addition & 1 deletion docs/building-with-codegen/reducing-conditions.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ else:
print('MY_FEATURE: OFF')
```

`.reduce_condition` allows you to determinstically reduce this code to the following:
`.reduce_condition` allows you to deterministically reduce this code to the following:

```python
print('MY_FEATURE: ON')
Expand Down