about summary refs log tree commit diff
path: root/library/alloc
diff options
context:
space:
mode:
authorIvan Tham <pickfire@riseup.net>2020-09-25 23:20:22 +0800
committerGitHub <noreply@github.com>2020-09-25 23:20:22 +0800
commit606ed2a07632af470f53a5d8cfaa0a4f453b50c0 (patch)
tree71e36f5aeae4f9cc018a9641a1248b8fe4f6dbce /library/alloc
parentb984ef6797ff17faa2b1e0ebb54b78de1491e5fd (diff)
downloadrust-606ed2a07632af470f53a5d8cfaa0a4f453b50c0.tar.gz
rust-606ed2a07632af470f53a5d8cfaa0a4f453b50c0.zip
Remove extra space from vec drawing
Diffstat (limited to 'library/alloc')
-rw-r--r--library/alloc/src/vec.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/library/alloc/src/vec.rs b/library/alloc/src/vec.rs
index c54b3aef95e..cfa89937794 100644
--- a/library/alloc/src/vec.rs
+++ b/library/alloc/src/vec.rs
@@ -2099,7 +2099,6 @@ impl<T> Extend<T> for Vec<T> {
 /// |  slice::Iter                    |  |                     |
 /// |  Iterator<Item = &Clone>        |  +---------------------+
 /// +---------------------------------+
-///
 /// ```
 trait SpecFromIter<T, I> {
     fn from_iter(iter: I) -> Self;