about summary refs log tree commit diff
path: root/src/doc
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2015-04-30 07:12:25 +0000
committerbors <bors@rust-lang.org>2015-04-30 07:12:25 +0000
commitb59403606953d01391c1faa38d96062e3dfafa3d (patch)
tree2b03c6fbf2b1b57ee0e07611d7bfe986f9384f74 /src/doc
parentf0bd14f7b15b978f8bf32bb368f63faa0f26c02e (diff)
parentf8b63e867dcf1d3247ab5057df3b4ebef00cc519 (diff)
downloadrust-b59403606953d01391c1faa38d96062e3dfafa3d.tar.gz
rust-b59403606953d01391c1faa38d96062e3dfafa3d.zip
Auto merge of #24970 - Hech:master, r=steveklabnik
Diffstat (limited to 'src/doc')
-rw-r--r--src/doc/trpl/casting-between-types.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/trpl/casting-between-types.md b/src/doc/trpl/casting-between-types.md
index f0c673b561a..dbacd405065 100644
--- a/src/doc/trpl/casting-between-types.md
+++ b/src/doc/trpl/casting-between-types.md
@@ -43,7 +43,7 @@ what it does is very simple, but very scary. It tells Rust to treat a value of
 one type as though it were another type. It does this regardless of the
 typechecking system, and just completely trusts you.
 
-[intrinsic]: intrinsics.html
+[intrinsics]: intrinsics.html
 
 In our previous example, we know that an array of four `u8`s represents a `u32`
 properly, and so we want to do the cast. Using `transmute` instead of `as`,