Fix minor syntax error in example.

This commit is contained in:
Scott Olson 2015-10-19 01:43:48 -06:00
parent d3f497861d
commit 8222970f79
1 changed files with 1 additions and 1 deletions

View File

@ -135,7 +135,7 @@ impl<T> Rc<T> {
fn new(data: T) -> Self {
unsafe {
// Wouldn't it be nice if heap::allocate worked like this?
let ptr = heap::allocate<RcBox<T>>();
let ptr = heap::allocate::<RcBox<T>>();
ptr::write(ptr, RcBox {
data: data,
ref_count: 1,