@@ -161,10 +161,10 @@ impl<A, S, D> ArrayBase<S, D> where S: Data<Elem=A>, D: Dimension
161161 }
162162
163163 /// Return a shared ownership (copy on write) array.
164- pub fn to_shared ( & self ) -> RcArray < A , D >
164+ pub fn to_shared ( & self ) -> ArcArray < A , D >
165165 where A : Clone
166166 {
167- // FIXME: Avoid copying if it’s already an RcArray .
167+ // FIXME: Avoid copying if it’s already an ArcArray .
168168 self . to_owned ( ) . into_shared ( )
169169 }
170170
@@ -178,7 +178,7 @@ impl<A, S, D> ArrayBase<S, D> where S: Data<Elem=A>, D: Dimension
178178
179179 /// Turn the array into a shared ownership (copy on write) array,
180180 /// without any copying.
181- pub fn into_shared ( self ) -> RcArray < A , D >
181+ pub fn into_shared ( self ) -> ArcArray < A , D >
182182 where S : DataOwned ,
183183 {
184184 let data = self . data . into_shared ( ) ;
@@ -487,7 +487,7 @@ impl<A, S, D> ArrayBase<S, D> where S: Data<Elem=A>, D: Dimension
487487 /// Return a mutable reference to the element at `index`.
488488 ///
489489 /// **Note:** Only unchecked for non-debug builds of ndarray.<br>
490- /// **Note:** (For `RcArray `) The array must be uniquely held when mutating it.
490+ /// **Note:** (For `ArcArray `) The array must be uniquely held when mutating it.
491491 #[ inline]
492492 pub unsafe fn uget_mut < I > ( & mut self , index : I ) -> & mut A
493493 where S : DataMut ,
@@ -520,7 +520,7 @@ impl<A, S, D> ArrayBase<S, D> where S: Data<Elem=A>, D: Dimension
520520 /// Indices may be equal.
521521 ///
522522 /// **Note:** only unchecked for non-debug builds of ndarray.<br>
523- /// **Note:** (For `RcArray `) The array must be uniquely held.
523+ /// **Note:** (For `ArcArray `) The array must be uniquely held.
524524 pub unsafe fn uswap < I > ( & mut self , index1 : I , index2 : I )
525525 where S : DataMut ,
526526 I : NdIndex < D > ,
@@ -1173,7 +1173,7 @@ impl<A, S, D> ArrayBase<S, D> where S: Data<Elem=A>, D: Dimension
11731173 }
11741174 }
11751175
1176- /// *Note: Reshape is for `RcArray ` only. Use `.into_shape()` for
1176+ /// *Note: Reshape is for `ArcArray ` only. Use `.into_shape()` for
11771177 /// other arrays and array views.*
11781178 ///
11791179 /// Transform the array into `shape`; any shape with the same number of
0 commit comments