diff options
| author | bors <bors@rust-lang.org> | 2021-06-26 08:24:31 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2021-06-26 08:24:31 +0000 |
| commit | 481971978fda83aa7cf1f1f3c80cfad822377cf2 (patch) | |
| tree | 93a3b16e36f948703197603b3f3bea4447780465 /compiler/rustc_middle/src | |
| parent | 6830052c7b87217886324129bffbe096e485d415 (diff) | |
| parent | 3da037f82988b8b3aca2ce13c5c81ba975923cab (diff) | |
| download | rust-481971978fda83aa7cf1f1f3c80cfad822377cf2.tar.gz rust-481971978fda83aa7cf1f1f3c80cfad822377cf2.zip | |
Auto merge of #86586 - Smittyvb:https-everywhere, r=petrochenkov
Use HTTPS links where possible While looking at #86583, I wondered how many other (insecure) HTTP links were in `rustc`. This changes most other `http` links to `https`. While most of the links are in comments or documentation, there are a few other HTTP links that are used by CI that are changed to HTTPS. Notes: - I didn't change any to or in licences - Some links don't support HTTPS :( - Some `http` links were dead, in those cases I upgraded them to their new places (all of which used HTTPS)
Diffstat (limited to 'compiler/rustc_middle/src')
| -rw-r--r-- | compiler/rustc_middle/src/ty/sty.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/compiler/rustc_middle/src/ty/sty.rs b/compiler/rustc_middle/src/ty/sty.rs index 1d9ff512288..5dc5080712e 100644 --- a/compiler/rustc_middle/src/ty/sty.rs +++ b/compiler/rustc_middle/src/ty/sty.rs @@ -1370,8 +1370,8 @@ pub type Region<'tcx> = &'tcx RegionKind; /// happen, you can use `leak_check`. This is more clearly explained /// by the [rustc dev guide]. /// -/// [1]: http://smallcultfollowing.com/babysteps/blog/2013/10/29/intermingled-parameter-lists/ -/// [2]: http://smallcultfollowing.com/babysteps/blog/2013/11/04/intermingled-parameter-lists/ +/// [1]: https://smallcultfollowing.com/babysteps/blog/2013/10/29/intermingled-parameter-lists/ +/// [2]: https://smallcultfollowing.com/babysteps/blog/2013/11/04/intermingled-parameter-lists/ /// [rustc dev guide]: https://rustc-dev-guide.rust-lang.org/traits/hrtb.html #[derive(Clone, PartialEq, Eq, Hash, Copy, TyEncodable, TyDecodable, PartialOrd, Ord)] pub enum RegionKind { |
