Chromium Code Reviews| 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]. |
| */ |