diff --git a/js/tests/ecma_3/RegExp/regress-188206.js b/js/tests/ecma_3/RegExp/regress-188206.js index 5beb4446269b..6fae0e1e295a 100644 --- a/js/tests/ecma_3/RegExp/regress-188206.js +++ b/js/tests/ecma_3/RegExp/regress-188206.js @@ -114,10 +114,11 @@ testThis(' /??a/ '); /* - * Misusing the {DecmalDigits} quantifier - according to ECMA. + * Misusing the {DecmalDigits} quantifier - according to ECMA, + * but not according to Perl. * * ECMA-262 Edition 3 prohibits the use of unescaped braces in - * regexp patterns, unless they form part of a quantifier + * regexp patterns, unless they form part of a quantifier. * * Hovever, Perl does not prohibit this. If not used as part * of a quantifer, Perl treats braces literally.