about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2016-07-09 18:16:48 -0700
committerGitHub <noreply@github.com>2016-07-09 18:16:48 -0700
commit4d50e47ce50cb9725bf09833083b66f50bd203e0 (patch)
tree13dc947adfdc834cca4cbeacb96f9908115e0a75
parentf93aaf84cb50dfaaba44b08c05bd51320263f592 (diff)
parenta5be0d21c6cbaf05cdfe67cb9f9561337a6b11f1 (diff)
downloadrust-4d50e47ce50cb9725bf09833083b66f50bd203e0.tar.gz
rust-4d50e47ce50cb9725bf09833083b66f50bd203e0.zip
Auto merge of #34723 - GuillaumeGomez:slice_doc, r=apasel422
Remove useless doc comment for slice

r? @steveklabnik

This doc comment isn't useful so I removed it. It also "fixes" the weird rustdoc output.

Before:

![screenshot from 2016-07-08 02-04-59](https://cloud.githubusercontent.com/assets/3050060/16688164/fbb321d6-451c-11e6-8d98-53346bc6eb1e.png)

After:

![screenshot from 2016-07-08 02-05-31](https://cloud.githubusercontent.com/assets/3050060/16688166/00b174e4-451d-11e6-83dd-93ab2509f647.png)
-rw-r--r--src/libcollections/slice.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/libcollections/slice.rs b/src/libcollections/slice.rs
index cef8a33703b..c8bbcee411c 100644
--- a/src/libcollections/slice.rs
+++ b/src/libcollections/slice.rs
@@ -151,7 +151,6 @@ mod hack {
     }
 }
 
-/// Allocating extension methods for slices.
 #[lang = "slice"]
 #[cfg(not(test))]
 impl<T> [T] {