diff --git a/src/libextra/arc.rs b/src/libextra/arc.rs index 81b183cc0ed..9cb33d3c65a 100644 --- a/src/libextra/arc.rs +++ b/src/libextra/arc.rs @@ -559,7 +559,7 @@ pub struct CowArc { priv x: UnsafeArc } /// mutation of the contents if there is only a single reference to /// the data. If there are multiple references the data is automatically /// cloned and the task modifies the cloned data in place of the shared data. -impl CowArc { +impl CowArc { /// Create a copy-on-write atomically reference counted wrapper #[inline] pub fn new(data: T) -> CowArc { @@ -583,7 +583,7 @@ impl CowArc { } } -impl Clone for CowArc { +impl Clone for CowArc { /// Duplicate a Copy-on-write Arc. See arc::clone for more details. #[inline] fn clone(&self) -> CowArc {