diff --git a/src/js/parser/javascript/repeat_optional.js b/src/js/parser/javascript/repeat_optional.js index 728ed08..4588979 100644 --- a/src/js/parser/javascript/repeat_optional.js +++ b/src/js/parser/javascript/repeat_optional.js @@ -1,3 +1,7 @@ +// RepeatOptional 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 one times. + export default { minimum: 0, maximum: 1