diff options
| author | bors <bors@rust-lang.org> | 2013-10-12 07:26:20 -0700 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2013-10-12 07:26:20 -0700 |
| commit | c6e3501da14784cd2401dded3b53f3ce3405b4ec (patch) | |
| tree | 0dab9190b64b1effaaef7fcf00e6446c308bbd86 /src/libstd | |
| parent | 35a944a48806356e816a68ee3758f7b2f4244fca (diff) | |
| parent | ea0fc0e32b65c87884e99ccdac277a7341532a91 (diff) | |
| download | rust-c6e3501da14784cd2401dded3b53f3ce3405b4ec.tar.gz rust-c6e3501da14784cd2401dded3b53f3ce3405b4ec.zip | |
auto merge of #9825 : thestinger/rust/rc, r=thestinger
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/rc.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/rc.rs b/src/libstd/rc.rs index 50dff380f00..41e834cf37c 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 |
