From 042d44c044eb560191326984fbff35e844d6f651 Mon Sep 17 00:00:00 2001 From: Jeff Avallone Date: Tue, 21 Apr 2015 20:51:27 -0400 Subject: [PATCH] Adding documentation to repeat_any.js --- src/js/parser/javascript/repeat_any.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/js/parser/javascript/repeat_any.js b/src/js/parser/javascript/repeat_any.js index 38760cc..9327d8f 100644 --- a/src/js/parser/javascript/repeat_any.js +++ b/src/js/parser/javascript/repeat_any.js @@ -1,3 +1,7 @@ +// RepeatAny nodes are used for `a*` regular expression syntax. It is not +// rendered directly; it just indicates that the [Repeat](./repeat.html) node +// loops zero or more times. + export default { minimum: 0, maximum: -1