about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorz4v1er <38393857+z4v1er@users.noreply.github.com>2018-04-25 13:51:51 +0300
committerGitHub <noreply@github.com>2018-04-25 13:51:51 +0300
commit011df4ac88b5ef31443f2bde8eea29b917445099 (patch)
tree4e1c3acea76d599251ebea5a121b7b59bac6a643 /src
parentcc794209681d6b11a63282bcd1513caa50127816 (diff)
downloadrust-011df4ac88b5ef31443f2bde8eea29b917445099.tar.gz
rust-011df4ac88b5ef31443f2bde8eea29b917445099.zip
Fix type
Diffstat (limited to 'src')
-rw-r--r--src/libcore/slice/mod.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libcore/slice/mod.rs b/src/libcore/slice/mod.rs
index cc42acd77ae..83e8a6e4b68 100644
--- a/src/libcore/slice/mod.rs
+++ b/src/libcore/slice/mod.rs
@@ -880,7 +880,6 @@ macro_rules! slice_core_methods { () => {
     #[inline]
     pub fn split_last(&self) -> Option<(&T, &[T])> {
         SliceExt::split_last(self)
-
     }
 
     /// Returns the last and all the rest of the elements of the slice, or `None` if it is empty.