@ -1,3 +1,10 @@
1.1.1 / WIP
------------------
- Fixed `Ruler.after()` method.
- Simplified loose/tight rendering.
1.1.0 / 2014-10-20
@ -132,7 +132,7 @@ Ruler.prototype.after = function (name, fn, altNames) {
if (index === -1) {
throw new Error('Parser rule not found: ' + name);
}
this.rules.splice(index + 1, 0, fn);
this.rules.splice(index + 1, 0, rule);
this.compile();