Skip to content

Commit

Permalink
Update dependencies and pre-commit
Browse files Browse the repository at this point in the history
  • Loading branch information
JanEricNitschke committed Sep 7, 2024
1 parent b8d95a3 commit 864cb95
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 25 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ repos:
- id: check-toml
- id: check-xml
- repo: https://github.com/crate-ci/typos
rev: v1.22.7
rev: v1.24.5
hooks:
- id: typos
args: []
Expand Down
46 changes: 23 additions & 23 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions _typos.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,5 @@ extend-ignore-identifiers-re = []
[default.extend-words]
# Don't correct the end 'true' when matching tokens.
ue = "ue"
LoadOnef = "LoadOnef"
Onef = "Onef"
2 changes: 1 addition & 1 deletion src/natives/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ pub fn define(vm: &mut VM) {
vm.define_native_function(&"len", &[1], len_native);

// The add to builtins is a bit of a workaround for how native instances
// are instatiated. Currently we either need a way to instantiate them
// are instantiated. Currently we either need a way to instantiate them
// without giving any data or we have to make it so they are not accessible in
// user land.
vm.define_native_class(&"List", true);
Expand Down

0 comments on commit 864cb95

Please sign in to comment.