Remove superfluous line from Nomicon

This commit is contained in:
Andrew Paseltiner 2015-08-28 22:07:02 -04:00
parent d50352419e
commit 010b7f3621

View File

@ -155,7 +155,6 @@ impl<T> Rc<T> {
impl<T> Drop for Rc<T> {
fn drop(&mut self) {
unsafe {
let inner = &mut ;
(*self.ptr).ref_count -= 1;
if (*self.ptr).ref_count == 0 {
// drop the data and then free it