Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
jcubic committed May 27, 2024
1 parent d01a7ef commit 6a1986e
Show file tree
Hide file tree
Showing 9 changed files with 36 additions and 36 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
[![npm](https://img.shields.io/badge/npm-1.0.0%E2%80%93beta.19-blue.svg)](https://www.npmjs.com/package/@jcubic/lips)
![1.0.0 Complete](https://img.shields.io/github/milestones/progress-percent/jcubic/lips/1?label=1.0.0%20Complete)
[![Build and test](https://github.com/jcubic/lips/actions/workflows/build.yaml/badge.svg?branch=master&event=push)](https://github.com/jcubic/lips/actions/workflows/build.yaml)
[![Coverage Status](https://coveralls.io/repos/github/jcubic/lips/badge.svg?branch=master&d10e8d3a3a0f2e4c8dbb6717a10f4367)](https://coveralls.io/github/jcubic/lips?branch=master)
[![Coverage Status](https://coveralls.io/repos/github/jcubic/lips/badge.svg?branch=master&80a731f28ad563e153f52942314ee16b)](https://coveralls.io/github/jcubic/lips?branch=master)
[![Join Gitter Chat](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/jcubic/lips)
![NPM Download Count](https://img.shields.io/npm/dm/@jcubic/lips)
![JSDelivr Download count](https://img.shields.io/jsdelivr/npm/hm/@jcubic/lips)
Expand Down
16 changes: 8 additions & 8 deletions dist/lips.cjs

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

16 changes: 8 additions & 8 deletions dist/lips.esm.js

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

4 changes: 2 additions & 2 deletions dist/lips.esm.min.js

Large diffs are not rendered by default.

16 changes: 8 additions & 8 deletions dist/lips.js

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

4 changes: 2 additions & 2 deletions dist/lips.min.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package-lock.json

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

8 changes: 4 additions & 4 deletions src/lips.js
Original file line number Diff line number Diff line change
Expand Up @@ -4609,11 +4609,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 6a1986e

Please sign in to comment.