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

Unified Diff: sdk/lib/core/regexp.dart

Issue 23522037: one-liners for the remaining top-50 dart:core classes (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: incorporate memfeedback Created 7 years, 3 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
Index: sdk/lib/core/regexp.dart
diff --git a/sdk/lib/core/regexp.dart b/sdk/lib/core/regexp.dart
index 815c52a4e27bb60bfae9130cb9015cd7fac1b555..f3b015eb1f71ae17687426100faf7624ec0e7295 100644
--- a/sdk/lib/core/regexp.dart
+++ b/sdk/lib/core/regexp.dart
@@ -5,13 +5,13 @@
part of dart.core;
/**
- * [Match] contains methods to manipulate a pattern match.
+ * A result from searching within a string.
*
- * A [Match] or and iterable of [Match] objects are returned from [Pattern]
+ * A Match or an [Iterable] of Match objects is returned from [Pattern]
Lasse Reichstein Nielsen 2016/08/31 18:57:36 `Match` *2
* matching methods.
*
* The following example finds all matches of a [RegExp] in a [String]
- * and iterates through the returned iterable of [Match] objects.
+ * and iterates through the returned iterable of Match objects.
*
* RegExp exp = new RegExp(r"(\w+)");
* String str = "Parse my string";
@@ -28,7 +28,7 @@ part of dart.core;
* string
*
* Some patterns, regular expressions in particular, may record subtrings
- * that were part of the matching. These are called "groups" in the `Match`
+ * that were part of the matching. These are called _groups_ in the Match
* object. Some patterns may never have any groups, and their matches always
* have zero [groupCount].
*/

Powered by Google App Engine
This is Rietveld 408576698