summaryrefslogtreecommitdiff
path: root/doc/HACKING/CodingStandardsRust.md
diff options
context:
space:
mode:
authorJeremyRand <biolizard89@gmail.com>2019-09-20 07:58:30 +0000
committerNick Mathewson <nickm@torproject.org>2020-07-13 10:42:46 -0400
commit0be80fb65003df21bece5d56e298b7fbf277b429 (patch)
tree4c081a3eb5ba3013161f372fa17956bc41211065 /doc/HACKING/CodingStandardsRust.md
parent20e278735267fa7bbd0475e4866c488581c9ea70 (diff)
downloadtor-0be80fb65003df21bece5d56e298b7fbf277b429.tar.gz
tor-0be80fb65003df21bece5d56e298b7fbf277b429.zip
Bug 31812: Change http URL's to https
Diffstat (limited to 'doc/HACKING/CodingStandardsRust.md')
-rw-r--r--doc/HACKING/CodingStandardsRust.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/HACKING/CodingStandardsRust.md b/doc/HACKING/CodingStandardsRust.md
index 97026c9b7c..36a0dcda2a 100644
--- a/doc/HACKING/CodingStandardsRust.md
+++ b/doc/HACKING/CodingStandardsRust.md
@@ -210,10 +210,10 @@ Here are some additional bits of advice and rules:
>
> * Data races
> * Dereferencing a null/dangling raw pointer
- > * Reads of [undef](http://llvm.org/docs/LangRef.html#undefined-values)
+ > * Reads of [undef](https://llvm.org/docs/LangRef.html#undefined-values)
> (uninitialized) memory
> * Breaking the
- > [pointer aliasing rules](http://llvm.org/docs/LangRef.html#pointer-aliasing-rules)
+ > [pointer aliasing rules](https://llvm.org/docs/LangRef.html#pointer-aliasing-rules)
> with raw pointers (a subset of the rules used by C)
> * `&mut T` and `&T` follow LLVM’s scoped noalias model, except if the `&T`
> contains an `UnsafeCell<U>`. Unsafe code must not violate these aliasing