Index: sdk/lib/async/async.dart |
diff --git a/sdk/lib/async/async.dart b/sdk/lib/async/async.dart |
index ac205beab5d32cc2edee2d8c8581034ef798cee7..5d1e2c735846a79e54f0f17c8191d428dbb9ec3f 100644 |
--- a/sdk/lib/async/async.dart |
+++ b/sdk/lib/async/async.dart |
@@ -67,26 +67,27 @@ |
* |
* ## Other resources |
* |
- * * The [dart:async section of the library tour] |
- * (https://www.dartlang.org/docs/dart-up-and-running/contents/ch03.html#ch03-asynchronous-programming): |
- * A brief overview of asynchronous programming. |
+ * * The [dart:async section of the library tour][asynchronous-programming]: |
+ * A brief overview of asynchronous programming. |
* |
- * * [Use Future-Based APIs] |
- * (https://www.dartlang.org/docs/tutorials/futures/): A closer look at |
- * Futures and how to use them to write asynchronous Dart code. |
+ * * [Use Future-Based APIs][futures-tutorial]: A closer look at Futures and |
+ * how to use them to write asynchronous Dart code. |
* |
- * * [Futures and Error Handling] |
- * (https://www.dartlang.org/articles/futures-and-error-handling/): Everything |
- * you wanted to know about handling errors and exceptions when working with |
- * Futures (but were afraid to ask). |
+ * * [Futures and Error Handling][futures-error-handling]: Everything you |
+ * wanted to know about handling errors and exceptions when working with |
+ * Futures (but were afraid to ask). |
* |
* * [The Event Loop and Dart](https://www.dartlang.org/articles/event-loop/): |
- * Learn how Dart handles the event queue and microtask queue, so you can write |
- * better asynchronous code with fewer surprises. |
+ * Learn how Dart handles the event queue and microtask queue, so you can |
+ * write better asynchronous code with fewer surprises. |
* |
- * * [Asynchronous Unit Testing with Dart] |
- * (https://www.dartlang.org/articles/dart-unit-tests/#asynchronous-tests): How |
- * to test asynchronous code. |
+ * * [test package: Asynchronous Tests][test-readme]: How to test asynchronous |
+ * code. |
+ * |
+ * [asynchronous-programming]: https://www.dartlang.org/docs/dart-up-and-running/ch03.html#dartasync---asynchronous-programming |
+ * [futures-tutorial]: https://www.dartlang.org/docs/tutorials/futures/ |
+ * [futures-error-handling]: https://www.dartlang.org/articles/futures-and-error-handling/ |
+ * [test-readme]: https://pub.dartlang.org/packages/test |
*/ |
library dart.async; |