Skip to content

Commit 26c3dbf

Browse files
tesujimark-i-m
authored andcommitted
Prefer https in GitHub pages urls (rust-lang#454)
1 parent 500c119 commit 26c3dbf

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

src/appendix/bibliography.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Rust, as well as publications about Rust.
3131
* [Balanced work stealing for time-sharing multicores](http://www.cse.ohio-state.edu/hpcs/WWW/HTML/publications/papers/TR-12-1.pdf)
3232
* [Three layer cake for shared-memory programming](http://dl.acm.org/citation.cfm?id=1953616&dl=ACM&coll=DL&CFID=524387192&CFTOKEN=44362705)
3333
* [Non-blocking steal-half work queues](http://www.cs.bgu.ac.il/%7Ehendlerd/papers/p280-hendler.pdf)
34-
* [Reagents: expressing and composing fine-grained concurrency](http://aturon.github.io/academic/reagents.pdf)
34+
* [Reagents: expressing and composing fine-grained concurrency](https://aturon.github.io/academic/reagents.pdf)
3535
* [Algorithms for scalable synchronization of shared-memory multiprocessors](https://www.cs.rochester.edu/u/scott/papers/1991_TOCS_synch.pdf)
3636
* [Epoch-based reclamation](https://www.cl.cam.ac.uk/techreports/UCAM-CL-TR-579.pdf).
3737

@@ -59,7 +59,7 @@ Rust, as well as publications about Rust.
5959
Rust](https://michaelsproul.github.io/rust_radix_paper/rust-radix-sproul.pdf). Undergrad
6060
paper by Michael Sproul.
6161
* [Reenix: Implementing a Unix-Like Operating System in
62-
Rust](http://scialex.github.io/reenix.pdf). Undergrad paper by Alex
62+
Rust](https://scialex.github.io/reenix.pdf). Undergrad paper by Alex
6363
Light.
6464
* [Evaluation of performance and productivity metrics of potential programming languages in the HPC environment](https://github.com/1wilkens/thesis-ba).
6565
Bachelor's thesis by Florian Wilkens. Compares C, Go and Rust.

src/borrow_check.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Doing borrow checking on MIR has several advantages:
2727
which are regions derived from the control-flow graph.
2828

2929
[47366]: https://github.com/rust-lang/rust/issues/47366
30-
[nll]: http://rust-lang.github.io/rfcs/2094-nll.html
30+
[nll]: https://rust-lang.github.io/rfcs/2094-nll.html
3131

3232
### Major phases of the borrow checker
3333

src/borrow_check/region_inference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ The MIR-based region analysis consists of two major functions:
4242
[`compute_regions`]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_mir/borrow_check/nll/fn.compute_regions.html
4343
[`RegionInferenceContext`]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_mir/borrow_check/nll/region_infer/struct.RegionInferenceContext.html
4444
[`solve`]: https://doc.rust-lang.org/nightly/nightly-rustc/rustc_mir/borrow_check/nll/region_infer/struct.RegionInferenceContext.html#method.solve
45-
[NLL RFC]: http://rust-lang.github.io/rfcs/2094-nll.html
45+
[NLL RFC]: https://rust-lang.github.io/rfcs/2094-nll.html
4646
[MIR type checker]: ./type_check.md
4747

4848
## Universal regions

src/mir/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ graphs and desugaring), you may enjoy the
1818
MIR is defined in the [`src/librustc/mir/`][mir] module, but much of the code
1919
that manipulates it is found in [`src/librustc_mir`][mirmanip].
2020

21-
[RFC 1211]: http://rust-lang.github.io/rfcs/1211-mir.html
21+
[RFC 1211]: https://rust-lang.github.io/rfcs/1211-mir.html
2222

2323
Some of the key characteristics of MIR are:
2424

src/traits/chalk-overview.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ Likewise, lowering tests use the [`lowering_success!` and
211211
* [Lowering Rust traits to logic](http://smallcultfollowing.com/babysteps/blog/2017/01/26/lowering-rust-traits-to-logic/)
212212
* [Unification in Chalk, part 1](http://smallcultfollowing.com/babysteps/blog/2017/03/25/unification-in-chalk-part-1/)
213213
* [Unification in Chalk, part 2](http://smallcultfollowing.com/babysteps/blog/2017/04/23/unification-in-chalk-part-2/)
214-
* [Negative reasoning in Chalk](http://aturon.github.io/blog/2017/04/24/negative-chalk/)
214+
* [Negative reasoning in Chalk](https://aturon.github.io/blog/2017/04/24/negative-chalk/)
215215
* [Query structure in chalk](http://smallcultfollowing.com/babysteps/blog/2017/05/25/query-structure-in-chalk/)
216216
* [Cyclic queries in chalk](http://smallcultfollowing.com/babysteps/blog/2017/09/12/tabling-handling-cyclic-queries-in-chalk/)
217217
* [An on-demand SLG solver for chalk](http://smallcultfollowing.com/babysteps/blog/2018/01/31/an-on-demand-slg-solver-for-chalk/)
@@ -230,27 +230,27 @@ Likewise, lowering tests use the [`lowering_success!` and
230230
[universal quantification]: https://en.wikipedia.org/wiki/Universal_quantification
231231

232232
[`ProgramClause`]: https://rust-lang.github.io/chalk/doc/chalk_ir/enum.ProgramClause.html
233-
[`ProgramEnvironment`]: http://rust-lang.github.io/chalk/doc/chalk/program_environment/struct.ProgramEnvironment.html
233+
[`ProgramEnvironment`]: https://rust-lang.github.io/chalk/doc/chalk/program_environment/struct.ProgramEnvironment.html
234234
[chalk_engine]: https://rust-lang.github.io/chalk/doc/chalk_engine/index.html
235235
[chalk_ir]: https://rust-lang.github.io/chalk/doc/chalk_ir/index.html
236236
[chalk_parse]: https://rust-lang.github.io/chalk/doc/chalk_parse/index.html
237237
[chalk_solve]: https://rust-lang.github.io/chalk/doc/chalk_solve/index.html
238238
[chalk_rust_ir]: https://rust-lang.github.io/chalk/doc/chalk_rust_ir/index.html
239239
[doc-chalk]: https://rust-lang.github.io/chalk/doc/chalk/index.html
240240
[engine-context]: https://rust-lang.github.io/chalk/doc/chalk_engine/context/index.html
241-
[chalk-program]: http://rust-lang.github.io/chalk/doc/chalk/program/struct.Program.html
241+
[chalk-program]: https://rust-lang.github.io/chalk/doc/chalk/program/struct.Program.html
242242

243-
[binders-struct]: http://rust-lang.github.io/chalk/doc/chalk_ir/struct.Binders.html
244-
[chalk-ast]: http://rust-lang.github.io/chalk/doc/chalk_parse/ast/index.html
243+
[binders-struct]: https://rust-lang.github.io/chalk/doc/chalk_ir/struct.Binders.html
244+
[chalk-ast]: https://rust-lang.github.io/chalk/doc/chalk_parse/ast/index.html
245245
[chalk-test-example]: https://github.com/rust-lang/chalk/blob/4bce000801de31bf45c02f742a5fce335c9f035f/src/test.rs#L115
246246
[chalk-test-lowering-example]: https://github.com/rust-lang/chalk/blob/4bce000801de31bf45c02f742a5fce335c9f035f/src/rust_ir/lowering/test.rs#L8-L31
247247
[chalk-test-lowering]: https://github.com/rust-lang/chalk/blob/4bce000801de31bf45c02f742a5fce335c9f035f/src/rust_ir/lowering/test.rs
248248
[chalk-test-wf]: https://github.com/rust-lang/chalk/blob/4bce000801de31bf45c02f742a5fce335c9f035f/src/rules/wf/test.rs#L1
249249
[chalki]: https://rust-lang.github.io/chalk/doc/chalki/index.html
250250
[clause]: https://github.com/rust-lang/chalk/blob/master/GLOSSARY.md#clause
251-
[coherence-src]: http://rust-lang.github.io/chalk/doc/chalk_solve/coherence/index.html
252-
[ir-code]: http://rust-lang.github.io/chalk/doc/chalk_rust_ir/
253-
[solve-wf-src]: http://rust-lang.github.io/chalk/doc/chalk_solve/wf/index.html
251+
[coherence-src]: https://rust-lang.github.io/chalk/doc/chalk_solve/coherence/index.html
252+
[ir-code]: https://rust-lang.github.io/chalk/doc/chalk_rust_ir/
253+
[solve-wf-src]: https://rust-lang.github.io/chalk/doc/chalk_solve/wf/index.html
254254
[solve_goal]: https://github.com/rust-lang/chalk/blob/4bce000801de31bf45c02f742a5fce335c9f035f/src/test.rs#L85
255255
[test-lowering-macros]: https://github.com/rust-lang/chalk/blob/4bce000801de31bf45c02f742a5fce335c9f035f/src/test_util.rs#L21-L54
256256
[test-macro]: https://github.com/rust-lang/chalk/blob/4bce000801de31bf45c02f742a5fce335c9f035f/src/test.rs#L33

src/traits/slg.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,4 +299,4 @@ more answers later on.
299299

300300
[readme]: https://github.com/rust-lang/chalk/blob/239e4ae4e69b2785b5f99e0f2b41fc16b0b4e65e/chalk-engine/src/README.md
301301
[slg-blog]: http://smallcultfollowing.com/babysteps/blog/2018/01/31/an-on-demand-slg-solver-for-chalk/
302-
[negative-reasoning-blog]: http://aturon.github.io/blog/2017/04/24/negative-chalk/
302+
[negative-reasoning-blog]: https://aturon.github.io/blog/2017/04/24/negative-chalk/

0 commit comments

Comments
 (0)