| Index: dart/sdk/lib/mirrors/mirrors.dart
|
| diff --git a/dart/sdk/lib/mirrors/mirrors.dart b/dart/sdk/lib/mirrors/mirrors.dart
|
| index e29c225253b5d5820f01b7397771a9b250e92ebe..fd91660c405f850a6dee4ff23a85ba2949e87878 100644
|
| --- a/dart/sdk/lib/mirrors/mirrors.dart
|
| +++ b/dart/sdk/lib/mirrors/mirrors.dart
|
| @@ -1111,21 +1111,19 @@ class Comment {
|
| *
|
| * Example usage:
|
| *
|
| - * [:
|
| - * @MirrorsUsed(symbols: 'foo', override: '*')
|
| - * import 'dart:mirrors';
|
| + * @MirrorsUsed(symbols: 'foo', override: '*')
|
| + * import 'dart:mirrors';
|
| *
|
| - * class Foo {
|
| - * noSuchMethod(Invocation invocation) {
|
| - * print(Mirrors.getName(invocation.memberName));
|
| - * }
|
| - * }
|
| + * class Foo {
|
| + * noSuchMethod(Invocation invocation) {
|
| + * print(Mirrors.getName(invocation.memberName));
|
| + * }
|
| + * }
|
| *
|
| - * main() {
|
| - * new Foo().foo(); // Prints "foo".
|
| - * new Foo().bar(); // Might print an arbitrary (mangled) name, "bar".
|
| - * }
|
| - * :]
|
| + * main() {
|
| + * new Foo().foo(); // Prints "foo".
|
| + * new Foo().bar(); // Might print an arbitrary (mangled) name, "bar".
|
| + * }
|
| */
|
| // TODO(ahe): Remove ", override: '*'" when it isn't necessary anymore.
|
| class MirrorsUsed {
|
|
|