diff options
| author | Andrew Paseltiner <apaseltiner@gmail.com> | 2015-08-28 22:07:02 -0400 |
|---|---|---|
| committer | Andrew Paseltiner <apaseltiner@gmail.com> | 2015-08-28 22:07:02 -0400 |
| commit | 010b7f36218215af2bc18ab1ea98aa980a34bf20 (patch) | |
| tree | eaf577ef6106975eecbda01983308356e9fd4f36 | |
| parent | d50352419eedf95f40dc317c7d5a7fc586189e05 (diff) | |
| download | rust-010b7f36218215af2bc18ab1ea98aa980a34bf20.tar.gz rust-010b7f36218215af2bc18ab1ea98aa980a34bf20.zip | |
Remove superfluous line from Nomicon
| -rw-r--r-- | src/doc/nomicon/leaking.md | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/doc/nomicon/leaking.md b/src/doc/nomicon/leaking.md index 1aa78e112ea..0441db27526 100644 --- a/src/doc/nomicon/leaking.md +++ b/src/doc/nomicon/leaking.md @@ -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 |
