Fix http links to pub which has https.

Change-Id: I3b712014fb0744b890df426e941907760bd92780
Reviewed-on: https://dart-review.googlesource.com/c/88452
Reviewed-by: Jonas Jensen <jonasfj@google.com>
Commit-Queue: Jonas Termansen <sortie@google.com>
This commit is contained in:
Jonas Termansen 2019-01-07 11:37:19 +00:00 committed by commit-bot@chromium.org
parent 3b29f5ad81
commit 7d6a3e0058
3 changed files with 4 additions and 4 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] (http://pub.dartlang.org/packages/meta).
/// [meta package on pub.dartlang.org] (https://pub.dartlang.org/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

@ -1166,7 +1166,7 @@ abstract class Cookie {
* that contains the content of and information about an HTTP request.
*
* __Note__: Check out the
* [http_server](http://pub.dartlang.org/packages/http_server)
* [http_server](https://pub.dartlang.org/packages/http_server)
* package, which makes working with the low-level
* dart:io HTTP server subsystem easier.
*

View file

@ -117,7 +117,7 @@ part of dart.core;
*
* The DateTime class does not provide internationalization.
* To internationalize your code, use
* the [intl](http://pub.dartlang.org/packages/intl) package.
* the [intl](https://pub.dartlang.org/packages/intl) package.
*
*/
class DateTime implements Comparable<DateTime> {
@ -552,7 +552,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](http://pub.dartlang.org/packages/intl) package
* Use the [intl](https://pub.dartlang.org/packages/intl) package
* at the pub shared packages repo.
*
* The resulting string can be parsed back using [parse].