| Index: pkg/unittest/lib/matcher.dart
|
| diff --git a/pkg/unittest/lib/matcher.dart b/pkg/unittest/lib/matcher.dart
|
| index 09dd7eb9aa8d2fdf0b58e290da2501a3dada39fb..4830b8f619c54c84d01cc65e1a95955fd817c4f0 100644
|
| --- a/pkg/unittest/lib/matcher.dart
|
| +++ b/pkg/unittest/lib/matcher.dart
|
| @@ -2,28 +2,21 @@
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| // BSD-style license that can be found in the LICENSE file.
|
| /**
|
| - * The matcher library provides a 3rd generation assertion mechanism, drawing
|
| - * inspiration from [Hamcrest](http://code.google.com/p/hamcrest/).
|
| - *
|
| - * ## Installing ##
|
| - *
|
| - * Use [pub][] to install this package. Add the following to your `pubspec.yaml`
|
| - * file.
|
| - *
|
| - * dependencies:
|
| - * unittest: any
|
| - *
|
| - * Then run `pub install`.
|
| + * Support for specifying test expectations,
|
| + * such as for unit tests.
|
| *
|
| - * Import this into your Dart code with:
|
| + * This library is included in the
|
| + * [unittest package on pub.dartlang.org]
|
| + * (http://pub.dartlang.org/packages/unittest).
|
| + * Import this library into your Dart code with:
|
| *
|
| * import 'package:unittest/matcher.dart';
|
| *
|
| - * For more information, see the [unittest package on pub.dartlang.org].
|
| - * (http://pub.dartlang.org/packages/unittest).
|
| - *
|
| - * [pub]: http://pub.dartlang.org
|
| - * [pkg]: http://pub.dartlang.org/packages/matcher
|
| + * The matcher library provides a third-generation assertion mechanism, drawing
|
| + * inspiration from [Hamcrest](http://code.google.com/p/hamcrest/).
|
| + * For more information, see
|
| + * [Unit Testing with Dart]
|
| + * (http://www.dartlang.org/articles/dart-unit-tests/).
|
| */
|
| library matcher;
|
|
|
|
|