]> git.lizzy.rs Git - rust.git/commitdiff
[Documentation: Macros] Use some more SSL
authorChristian Stadelmann <dev@genodeftest.de>
Thu, 4 Jun 2015 13:53:22 +0000 (15:53 +0200)
committerChristian Stadelmann <dev@genodeftest.de>
Thu, 4 Jun 2015 13:53:22 +0000 (15:53 +0200)
src/doc/trpl/macros.md

index e843dbeed3cf4e76ca80b84a9d14be4e6d957ca6..1317a1490903b435fda848f500d33ce9c5bbd0d2 100644 (file)
@@ -224,7 +224,7 @@ more" match. Both forms optionally include a separator, which can be any token
 except `+` or `*`.
 
 This system is based on
-"[Macro-by-Example](http://www.cs.indiana.edu/ftp/techreports/TR206.pdf)"
+"[Macro-by-Example](https://www.cs.indiana.edu/ftp/techreports/TR206.pdf)"
 (PDF link).
 
 # Hygiene
@@ -319,7 +319,7 @@ syntax context where it was introduced. It’s as though the variable `state`
 inside `main` is painted a different "color" from the variable `state` inside
 the macro, and therefore they don’t conflict.
 
-[hygienic macro system]: http://en.wikipedia.org/wiki/Hygienic_macro
+[hygienic macro system]: https://en.wikipedia.org/wiki/Hygienic_macro
 
 This also restricts the ability of macros to introduce new bindings at the
 invocation site. Code such as the following will not work:
@@ -622,7 +622,7 @@ invocation gives you another opportunity to pattern-match the macro’s
 arguments.
 
 As an extreme example, it is possible, though hardly advisable, to implement
-the [Bitwise Cyclic Tag](http://esolangs.org/wiki/Bitwise_Cyclic_Tag) automaton
+the [Bitwise Cyclic Tag](https://esolangs.org/wiki/Bitwise_Cyclic_Tag) automaton
 within Rust’s macro system.
 
 ```rust