Skip to content

Commit

Permalink
fix(bin): fix output value
Browse files Browse the repository at this point in the history
fix #13
  • Loading branch information
azu committed Oct 12, 2018
1 parent d25db8a commit 9e53451
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/cmd.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ input.pipe(
return node.type === Syntax.Sentence;
})
.forEach(function(sentence, index) {
console.log("Sentence " + index + ": " + sentence.value);
console.log("Sentence " + index + ": " + sentence.raw);
});
})
);

0 comments on commit 9e53451

Please sign in to comment.