about summary refs log tree commit diff
path: root/src/libstd/cast.rs
diff options
context:
space:
mode:
authorNiko Matsakis <niko@alum.mit.edu>2013-07-10 09:50:24 -0400
committerNiko Matsakis <niko@alum.mit.edu>2013-07-10 10:03:29 -0400
commit9ee5ce221501cbafd8540586ec2904063b4448d6 (patch)
tree52d433fc5467be9215fe527d310f9a6da7a46b53 /src/libstd/cast.rs
parent8fa09736efcd100ec675a2fe0e29906607996485 (diff)
downloadrust-9ee5ce221501cbafd8540586ec2904063b4448d6.tar.gz
rust-9ee5ce221501cbafd8540586ec2904063b4448d6.zip
Add a `mut_split()` method for dividing one `&mut [T]` into two
Diffstat (limited to 'src/libstd/cast.rs')
-rw-r--r--src/libstd/cast.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libstd/cast.rs b/src/libstd/cast.rs
index 30b6b030dba..50b5b2fcd29 100644
--- a/src/libstd/cast.rs
+++ b/src/libstd/cast.rs
@@ -14,7 +14,6 @@ use sys;
 use unstable::intrinsics;
 
 /// Casts the value at `src` to U. The two types must have the same length.
-/// Casts the value at `src` to U. The two types must have the same length.
 #[cfg(target_word_size = "32")]
 #[inline]
 pub unsafe fn transmute_copy<T, U>(src: &T) -> U {