From: Joshua Simmons Date: Sun, 16 Oct 2022 21:43:29 +0000 (+0200) Subject: Re-word some documentation for manual_arc X-Git-Url: https://git.nega.tv//gitweb.cgi?a=commitdiff_plain;h=f43f7a8b8d8de70097f834637b6bf8e53f8c51c6;p=josh%2Fnarcissus Re-word some documentation for manual_arc --- diff --git a/narcissus-core/src/manual_arc.rs b/narcissus-core/src/manual_arc.rs index 4554376..3daa72b 100644 --- a/narcissus-core/src/manual_arc.rs +++ b/narcissus-core/src/manual_arc.rs @@ -10,7 +10,7 @@ use std::{ pub enum Release { /// There are other outstanding references to this object. Shared, - /// This was the final reference, returning the object that the container was holding. + /// This was the final reference, contains the object the container was previously holding. Unique(T), }