diff options
| author | Olivier Saut <osaut@airpost.net> | 2013-05-20 12:06:37 +0200 |
|---|---|---|
| committer | Olivier Saut <osaut@airpost.net> | 2013-05-20 12:06:37 +0200 |
| commit | a9c7d3f7757ee67fd5d068b0ebfb5a95d8e4d2cc (patch) | |
| tree | 52aae2ca68becea3e1758e0a1d24a0ad72acc3ab | |
| parent | ab46a38039c320bd2011160fdd8a86828172d29e (diff) | |
| download | rust-a9c7d3f7757ee67fd5d068b0ebfb5a95d8e4d2cc.tar.gz rust-a9c7d3f7757ee67fd5d068b0ebfb5a95d8e4d2cc.zip | |
Typo corrected and updated copyright years
| -rw-r--r-- | src/libstd/arc.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/arc.rs b/src/libstd/arc.rs index f0158acfa79..8d50c306878 100644 --- a/src/libstd/arc.rs +++ b/src/libstd/arc.rs @@ -1,4 +1,4 @@ -// Copyright 2012 The Rust Project Developers. See the COPYRIGHT +// Copyright 2012-2013 The Rust Project Developers. See the COPYRIGHT // file at the top-level directory of this distribution and at // http://rust-lang.org/COPYRIGHT. // @@ -21,7 +21,7 @@ use core::unstable::sync::UnsafeAtomicRcBox; use core::ptr; use core::task; -/// As sync::condvar, a mechanism for unlock-and-descheduling and signalling. +/// As sync::condvar, a mechanism for unlock-and-descheduling and signaling. pub struct Condvar<'self> { is_mutex: bool, failed: &'self mut bool, |
