summaryrefslogtreecommitdiff
path: root/src/tools/miri/tests/pass/strings.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/miri/tests/pass/strings.rs')
-rw-r--r--src/tools/miri/tests/pass/strings.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/miri/tests/pass/strings.rs b/src/tools/miri/tests/pass/strings.rs
index 5e2d2e9b5b5..72cdbe7ed5d 100644
--- a/src/tools/miri/tests/pass/strings.rs
+++ b/src/tools/miri/tests/pass/strings.rs
@@ -29,7 +29,7 @@ fn unique_aliasing() {
// This is a regression test for the aliasing rules of a `Unique<T>` pointer.
// At the time of writing this test case, Miri does not treat `Unique<T>`
// pointers as a special case, these are treated like any other raw pointer.
- // However, there are existing Github issues which may lead to `Unique<T>`
+ // However, there are existing GitHub issues which may lead to `Unique<T>`
// becoming a special case through asserting unique ownership over the pointee:
// - https://github.com/rust-lang/unsafe-code-guidelines/issues/258
// - https://github.com/rust-lang/unsafe-code-guidelines/issues/262