Skip to content

Commit

Permalink
fix(Unparser): fix typo in visitChain
Browse files Browse the repository at this point in the history
  • Loading branch information
fkleuver authored and jdanyow committed Feb 2, 2018
1 parent b06cbc2 commit a90216c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/unparser.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ if (typeof FEATURE_NO_UNPARSER === 'undefined') {
visitChain(chain) {
let expressions = chain.expressions;

for (let i = 0, length = expression.length; i < length; ++i) {
for (let i = 0, length = expressions.length; i < length; ++i) {
if (i !== 0) {
this.write(';');
}
Expand Down

0 comments on commit a90216c

Please sign in to comment.