Skip to content

Commit

Permalink
fix typo #308
Browse files Browse the repository at this point in the history
  • Loading branch information
jcubic committed Mar 25, 2024
1 parent cdfd8c8 commit 06953fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lips.js
Original file line number Diff line number Diff line change
Expand Up @@ -1437,7 +1437,7 @@ function match_or_null(re, char) {
class Parser {
constructor({ env, meta = false, formatter = multiline_formatter } = {}) {
read_only(this, '_formatter', formatter, { hidden: true });
read_only(this, '__env__', env ?? env.inerit('parser'));
read_only(this, '__env__', env ?? env.inherit('parser'));
read_only(this, '_meta', meta, { hidden: true });
// datum labels
read_only(this, '_refs', [], { hidden: true });
Expand Down

0 comments on commit 06953fd

Please sign in to comment.