Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(166)

Unified Diff: dart/corelib/src/regexp.dart

Issue 8277001: Fix typo. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/corelib/src/regexp.dart
===================================================================
--- dart/corelib/src/regexp.dart (revision 392)
+++ dart/corelib/src/regexp.dart (working copy)
@@ -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 @@
* [:
* 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 {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698