about summary refs log tree commit diff
path: root/src/liballoc
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2017-06-19 07:51:00 -0700
committerAlex Crichton <alex@alexcrichton.com>2017-06-19 07:51:00 -0700
commit609d43a15a59e7610b138335b3d5589e1a7d6187 (patch)
tree6d96994bb240ce381e34e580b945d4b5dd1774a4 /src/liballoc
parent879ec55d2eb89dea357812577eaeea583a6e4926 (diff)
downloadrust-609d43a15a59e7610b138335b3d5589e1a7d6187.tar.gz
rust-609d43a15a59e7610b138335b3d5589e1a7d6187.zip
Minor Allocator doc fix
Diffstat (limited to 'src/liballoc')
-rw-r--r--src/liballoc/allocator.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/liballoc/allocator.rs b/src/liballoc/allocator.rs
index 752acbd0b45..9bddce29957 100644
--- a/src/liballoc/allocator.rs
+++ b/src/liballoc/allocator.rs
@@ -370,7 +370,6 @@ impl fmt::Display for CannotReallocInPlace {
     }
 }
 
-/// An implementation of `Allocator` can allocate, reallocate, and
 /// An implementation of `Alloc` can allocate, reallocate, and
 /// deallocate arbitrary blocks of data described via `Layout`.
 ///