Skip to content

Commit

Permalink
fix: typos (#428)
Browse files Browse the repository at this point in the history
* Update eval_compiled.rs

* Update eval_direct.rs
  • Loading branch information
maximevtush authored Feb 24, 2025
1 parent 3ab53a1 commit bfa8fdd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/core/tests/eval_compiled.rs
Original file line number Diff line number Diff line change
Expand Up @@ -599,7 +599,7 @@ test_raw!(
test_unbound_var2,
|z| {
// binding the built-in `cons` but evaluating a `Tag::Sym`-tagged `cons`
// should resuld in an unbound var error
// should result in an unbound var error
let let_ = z.intern_symbol_no_lang(&builtin_sym("let"));
let cons = z.intern_symbol_no_lang(&builtin_sym("cons"));
let one = uint(1);
Expand Down
2 changes: 1 addition & 1 deletion src/core/tests/eval_direct.rs
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,7 @@ test_raw!(
test_unbound_var2,
|z| {
// binding the built-in `cons` but evaluating a `Tag::Sym`-tagged `cons`
// should resuld in an unbound var error
// should result in an unbound var error
let let_ = z.intern_symbol_no_lang(&builtin_sym("let"));
let cons = z.intern_symbol_no_lang(&builtin_sym("cons"));
let one = uint(1);
Expand Down

0 comments on commit bfa8fdd

Please sign in to comment.