Skip to content

Commit

Permalink
fix codespell errors #362
Browse files Browse the repository at this point in the history
  • Loading branch information
jcubic committed May 26, 2024
1 parent e8f6441 commit c1414d5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/lips.js
Original file line number Diff line number Diff line change
Expand Up @@ -4686,11 +4686,11 @@ function transform_syntax(options = {}) {
}
return expr;
}
function have_binding(biding, skip_nulls) {
const values = Object.values(biding);
const symbols = Object.getOwnPropertySymbols(biding);
function have_binding(binding, skip_nulls) {
const values = Object.values(binding);
const symbols = Object.getOwnPropertySymbols(binding);
if (symbols.length) {
values.push(...symbols.map(x => biding[x]));
values.push(...symbols.map(x => binding[x]));
}
return values.length && values.every(x => {
if (x === null) {
Expand Down
2 changes: 1 addition & 1 deletion tests/parametrize.scm
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@

(test "parametrize: force/delay"
(lambda (t)
;; example taked from SRFI-155
;; example taken from SRFI-155
(t.is (let ()
(define x (make-parameter 1))
(define p (delay (x)))
Expand Down

0 comments on commit c1414d5

Please sign in to comment.