about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2018-04-29 14:08:59 +0000
committerbors <bors@rust-lang.org>2018-04-29 14:08:59 +0000
commit96e182833b5c17da2481e6edf5bfdb75ad004e6e (patch)
tree4cab6b025cd17a68884f7f3c20a74a362655cfc2 /src
parentd450f991388021cd023d879804dc3bc9b56b3a21 (diff)
parent011df4ac88b5ef31443f2bde8eea29b917445099 (diff)
downloadrust-96e182833b5c17da2481e6edf5bfdb75ad004e6e.tar.gz
rust-96e182833b5c17da2481e6edf5bfdb75ad004e6e.zip
Auto merge of #50217 - z4v1er:patch-1, r=aturon
Fix typo
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.