lib/ast/processor/mixin.rb in ast-2.4.0 vs lib/ast/processor/mixin.rb in ast-2.4.1
- old
+ new
@@ -21,10 +21,10 @@
# * `(negate <node>)`,
# * `(store <node> <string-literal>)`: stores value of `<node>`
# into a variable named `<string-literal>`,
# * `(load <string-literal>)`: loads value of a variable named
# `<string-literal>`,
- # * `(each <node> ...): computes each of the `<node>`s and
+ # * `(each <node> ...)`: computes each of the `<node>`s and
# prints the result.
#
# All AST nodes have the same Ruby class, and therefore they don't
# know how to traverse themselves. (A solution which dynamically
# checks the type of children is possible, but is slow and