From 7d6a3e0058bcbc960a19c427fdc2be002bc904c3 Mon Sep 17 00:00:00 2001 From: Jonas Termansen Date: Mon, 7 Jan 2019 11:37:19 +0000 Subject: [PATCH] Fix http links to pub which has https. Change-Id: I3b712014fb0744b890df426e941907760bd92780 Reviewed-on: https://dart-review.googlesource.com/c/88452 Reviewed-by: Jonas Jensen Commit-Queue: Jonas Termansen --- pkg/meta/lib/meta.dart | 2 +- sdk/lib/_http/http.dart | 2 +- sdk/lib/core/date_time.dart | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/pkg/meta/lib/meta.dart b/pkg/meta/lib/meta.dart index c6996cc43d3..9fd9fca4a38 100644 --- a/pkg/meta/lib/meta.dart +++ b/pkg/meta/lib/meta.dart @@ -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. diff --git a/sdk/lib/_http/http.dart b/sdk/lib/_http/http.dart index 1021892a435..393045f5eb2 100644 --- a/sdk/lib/_http/http.dart +++ b/sdk/lib/_http/http.dart @@ -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. * diff --git a/sdk/lib/core/date_time.dart b/sdk/lib/core/date_time.dart index c541c66f29f..1f46d11ce4d 100644 --- a/sdk/lib/core/date_time.dart +++ b/sdk/lib/core/date_time.dart @@ -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 { @@ -552,7 +552,7 @@ class DateTime implements Comparable { * 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].