From ea0fc0e32b65c87884e99ccdac277a7341532a91 Mon Sep 17 00:00:00 2001 From: Daniel Micay Date: Sat, 12 Oct 2013 10:19:56 -0400 Subject: [PATCH] rc: fix docstring --- src/libstd/rc.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libstd/rc.rs b/src/libstd/rc.rs index 50dff380f007..41e834cf37c3 100644 --- a/src/libstd/rc.rs +++ b/src/libstd/rc.rs @@ -8,7 +8,7 @@ // option. This file may not be copied, modified, or distributed // except according to those terms. -/** Task-local reference counted boxes +/*! Task-local reference counted boxes The `Rc` type provides shared ownership of an immutable value. Destruction is deterministic, and will occur as soon as the last owner is gone. It is marked as non-sendable because it avoids the