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_parse/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_parse/src')
| -rw-r--r-- | compiler/rustc_parse/src/lexer/unicode_chars.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_parse/src/lexer/unicode_chars.rs b/compiler/rustc_parse/src/lexer/unicode_chars.rs index 40e2e34aa05..3eebc088f3f 100644 --- a/compiler/rustc_parse/src/lexer/unicode_chars.rs +++ b/compiler/rustc_parse/src/lexer/unicode_chars.rs @@ -1,5 +1,5 @@ // Characters and their corresponding confusables were collected from -// http://www.unicode.org/Public/security/10.0.0/confusables.txt +// https://www.unicode.org/Public/security/10.0.0/confusables.txt use super::StringReader; use crate::token; |
