]> git.nega.tv - josh/narcissus/commitdiff
Re-word some documentation for manual_arc
authorJoshua Simmons <josh@nega.tv>
Sun, 16 Oct 2022 21:43:29 +0000 (23:43 +0200)
committerJoshua Simmons <josh@nega.tv>
Sun, 16 Oct 2022 21:43:29 +0000 (23:43 +0200)
narcissus-core/src/manual_arc.rs

index 4554376250469454df73e2f5c20830edd05e58f3..3daa72b91c89f6fb5a7fc06eb31001c36c6911fe 100644 (file)
@@ -10,7 +10,7 @@ use std::{
 pub enum Release<T> {
     /// 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),
 }