Fix comment to reflect the actual regexp/spec in the JS version as well.

This commit is contained in:
Gabriel Wicke 2012-01-18 19:35:13 +00:00
parent 14e6728cc4
commit 4bd4307924
Notes: Gabriel Wicke 2012-02-27 16:40:01 +00:00

View file

@ -66,7 +66,7 @@ Sanitizer.prototype._IDNRegexp = new RegExp(
"\u180d|" + // 180d MONGOLIAN FREE VARIATION SELECTOR THREE
"\u200c|" + // 200c ZERO WIDTH NON-JOINER
"\u200d|" + // 200d ZERO WIDTH JOINER
"[\ufe00-\ufe0f]" // fe00-fe00f VARIATION SELECTOR-1-16
"[\ufe00-\ufe0f]" // fe00-fe0f VARIATION SELECTOR-1-16
, 'g'
);