about summary refs log tree commit diff
path: root/src/libcore/marker.rs
diff options
context:
space:
mode:
authorOliver Middleton <olliemail27@gmail.com>2016-10-21 00:49:47 +0100
committerOliver Middleton <olliemail27@gmail.com>2016-10-21 00:49:47 +0100
commit8faa503a6b1a02cd66d2517187b0b501a02a4905 (patch)
treee9d68e3947aff65ff6f6825ddcec94460e307ee6 /src/libcore/marker.rs
parent7bccb829d0fe9a733bd6efcf6f7313186ae237ab (diff)
downloadrust-8faa503a6b1a02cd66d2517187b0b501a02a4905.tar.gz
rust-8faa503a6b1a02cd66d2517187b0b501a02a4905.zip
Fix a few links in the docs
Diffstat (limited to 'src/libcore/marker.rs')
-rw-r--r--src/libcore/marker.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcore/marker.rs b/src/libcore/marker.rs
index 03d8af1563d..bdb0dd8e7d1 100644
--- a/src/libcore/marker.rs
+++ b/src/libcore/marker.rs
@@ -241,8 +241,8 @@ pub trait Unsize<T: ?Sized> {
 /// compile-time error. Specifically, with structs you'll get [E0204] and with enums you'll get
 /// [E0205].
 ///
-/// [E0204]: https://doc.rust-lang.org/error-index.html#E0204
-/// [E0205]: https://doc.rust-lang.org/error-index.html#E0205
+/// [E0204]: ../../error-index.html#E0204
+/// [E0205]: ../../error-index.html#E0205
 ///
 /// ## When *should* my type be `Copy`?
 ///