Fix pub.dev URLs throughout SDK repo

Change-Id: I5bcb7c40be12ee1dc887620281b4807469d67bbb
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/125729
Auto-Submit: Kevin Moore <kevmoo@google.com>
Reviewed-by: Michael Thomsen <mit@google.com>
Commit-Queue: Michael Thomsen <mit@google.com>
This commit is contained in:
Kevin Moore 2019-11-20 11:30:48 +00:00 committed by commit-bot@chromium.org
parent 6546460461
commit 8342ec2c71
13 changed files with 19 additions and 19 deletions

View file

@ -12,7 +12,7 @@
/// function's name differently.
///
/// For information on installing and importing this library, see the
/// [meta package on pub.dartlang.org] (https://pub.dartlang.org/packages/meta).
/// [meta package on pub.dev] (https://pub.dev/packages/meta).
/// For examples of using annotations, see
/// [Metadata](https://www.dartlang.org/docs/dart-up-and-running/ch02.html#metadata)
/// in the language tour.

View file

@ -100,7 +100,7 @@ See the [LICENSE] file.
[dartanalyzer]: https://github.com/dart-lang/sdk/tree/master/pkg/analyzer_cli#dartanalyzer
[list]: https://groups.google.com/a/dartlang.org/forum/#!forum/analyzer-discuss
[lintrules]: https://dart-lang.github.io/linter/lints/
[glob]: https://pub.dartlang.org/packages/glob
[glob]: https://pub.dev/packages/glob
[LICENSE]: https://github.com/dart-lang/sdk/blob/master/pkg/analyzer/LICENSE
[dartfmt]: https://github.com/dart-lang/dart_style
[dartdoc]: https://github.com/dart-lang/dartdoc

View file

@ -72,7 +72,7 @@ If you want a new fix, first look at [dartfix issues][]
and star the fixes you want.
If no issue exists for the fix, [create a GitHub issue.][new issue]
[dartfix]: https://pub.dartlang.org/packages/dartfix
[dartfix]: https://pub.dev/packages/dartfix
[dartfmt]: https://www.dartlang.org/tools/dartfmt
[added in Dart in 2.1]: https://github.com/dart-lang/sdk/blob/master/CHANGELOG.md#210---2018-11-15
[features added to Dart in 2.1]: https://github.com/dart-lang/sdk/blob/master/CHANGELOG.md#210---2018-11-15

View file

@ -60,7 +60,7 @@ features for Dart. Previous work has made JS interop possible, but gaps remain.
This proposal outlines a series of usability improvements that, taken together,
make it much easier to use JS from Dart and vice versa.
Here's an example of JS interop is like today, from the [Firebase package](https://pub.dartlang.org/packages/firebase):
Here's an example of JS interop is like today, from the [Firebase package](https://pub.dev/packages/firebase):
```dart
import 'interop/app_interop.dart';

View file

@ -1,6 +1,6 @@
# vm_service
[![pub package](https://img.shields.io/pub/v/vm_service.svg)](https://pub.dartlang.org/packages/vm_service)
[![pub package](https://img.shields.io/pub/v/vm_service.svg)](https://pub.dev/packages/vm_service)
A library to access the VM Service Protocol.

View file

@ -128,8 +128,8 @@ part 'websocket_impl.dart';
* about the streaming qualities of an HttpServer.
* Pausing the subscription of the stream, pauses at the OS level.
*
* * The [shelf](https://pub.dartlang.org/packages/shelf)
* package on pub.dartlang.org contains a set of high-level classes that,
* * The [shelf](https://pub.dev/packages/shelf)
* package on pub.dev contains a set of high-level classes that,
* together with this class, makes it easy to provide content through HTTP
* servers.
*/
@ -1008,7 +1008,7 @@ abstract class Cookie {
* that contains the content of and information about an HTTP request.
*
* __Note__: Check out the
* [http_server](https://pub.dartlang.org/packages/http_server)
* [http_server](https://pub.dev/packages/http_server)
* package, which makes working with the low-level
* dart:io HTTP server subsystem easier.
*

View file

@ -89,7 +89,7 @@
* [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
* [test-readme]: https://pub.dev/packages/test
*
* {@category Core}
*/

View file

@ -119,7 +119,7 @@ part of dart.core;
*
* The DateTime class does not provide internationalization.
* To internationalize your code, use
* the [intl](https://pub.dartlang.org/packages/intl) package.
* the [intl](https://pub.dev/packages/intl) package.
*
*/
class DateTime implements Comparable<DateTime> {
@ -562,7 +562,7 @@ class DateTime implements Comparable<DateTime> {
* The returned string is constructed for the time zone of this instance.
* The `toString()` method provides a simply formatted string.
* It does not support internationalized strings.
* Use the [intl](https://pub.dartlang.org/packages/intl) package
* Use the [intl](https://pub.dev/packages/intl) package
* at the pub shared packages repo.
*
* The resulting string can be parsed back using [parse].

View file

@ -67,7 +67,7 @@
* The [HttpServer] class provides the basic functionality for
* implementing an HTTP server.
* For some higher-level building-blocks, we recommend that you try
* the [shelf](https://pub.dartlang.org/packages/shelf)
* the [shelf](https://pub.dev/packages/shelf)
* pub package, which contains
* a set of high-level classes that, together with the [HttpServer] class
* in this library, make it easier to implement HTTP servers.

View file

@ -128,8 +128,8 @@ part 'websocket_impl.dart';
* about the streaming qualities of an HttpServer.
* Pausing the subscription of the stream, pauses at the OS level.
*
* * The [shelf](https://pub.dartlang.org/packages/shelf)
* package on pub.dartlang.org contains a set of high-level classes that,
* * The [shelf](https://pub.dev/packages/shelf)
* package on pub.dev contains a set of high-level classes that,
* together with this class, makes it easy to provide content through HTTP
* servers.
*/
@ -1008,7 +1008,7 @@ abstract class Cookie {
* that contains the content of and information about an HTTP request.
*
* __Note__: Check out the
* [http_server](https://pub.dartlang.org/packages/http_server)
* [http_server](https://pub.dev/packages/http_server)
* package, which makes working with the low-level
* dart:io HTTP server subsystem easier.
*

View file

@ -87,7 +87,7 @@
* [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
* [test-readme]: https://pub.dev/packages/test
*
* {@category Core}
*/

View file

@ -117,7 +117,7 @@ part of dart.core;
*
* The DateTime class does not provide internationalization.
* To internationalize your code, use
* the [intl](https://pub.dartlang.org/packages/intl) package.
* the [intl](https://pub.dev/packages/intl) package.
*
*/
class DateTime implements Comparable<DateTime> {
@ -557,7 +557,7 @@ class DateTime implements Comparable<DateTime> {
* The returned string is constructed for the time zone of this instance.
* The `toString()` method provides a simply formatted string.
* It does not support internationalized strings.
* Use the [intl](https://pub.dartlang.org/packages/intl) package
* Use the [intl](https://pub.dev/packages/intl) package
* at the pub shared packages repo.
*
* The resulting string can be parsed back using [parse].

View file

@ -67,7 +67,7 @@
* The [HttpServer] class provides the basic functionality for
* implementing an HTTP server.
* For some higher-level building-blocks, we recommend that you try
* the [shelf](https://pub.dartlang.org/packages/shelf)
* the [shelf](https://pub.dev/packages/shelf)
* pub package, which contains
* a set of high-level classes that, together with the [HttpServer] class
* in this library, make it easier to implement HTTP servers.