Fix typo.

BUG=dart:89
Review URL: http://codereview.chromium.org//8277001

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@398 260f80e4-7a28-3924-810f-c04153c831b5
This commit is contained in:
ngeoffray@google.com 2011-10-13 14:49:58 +00:00
parent 78f8e7bd91
commit 66e4a503ab

View file

@ -13,7 +13,7 @@
* [:
* RegExp exp = const RegExp(@"(\w+)");
* String str = "Parse my string";
* Iterable<Match> matches = exp.allMatches(str, exp);
* Iterable<Match> matches = exp.allMatches(str);
* for (Match m in matches) {
* String match = m.group(0);
* print(match);
@ -86,7 +86,7 @@ interface Match {
* [:
* RegExp exp = const RegExp(@"(\w+)");
* String str = "Parse my string";
* Iterable<Match> matches = exp.allMatches(str, exp);
* Iterable<Match> matches = exp.allMatches(str);
* :]
*/
interface RegExp extends Pattern factory JSSyntaxRegExp {