@@ -892,7 +892,7 @@ impl<A, S, D> ArrayBase<S, D> where S: Data<Elem=A>, D: Dimension
892892 /// **Panics** if any dimension of `chunk_size` is zero<br>
893893 /// (**Panics** if `D` is `IxDyn` and `chunk_size` does not match the
894894 /// number of array axes.)
895- pub fn exact_chunks < E > ( & self , chunk_size : E ) -> ExactChunks < A , D >
895+ pub fn exact_chunks < E > ( & self , chunk_size : E ) -> ExactChunks < A , D >
896896 where E : IntoDimension < Dim =D > ,
897897 {
898898 exact_chunks_of ( self . view ( ) , chunk_size)
@@ -930,7 +930,7 @@ impl<A, S, D> ArrayBase<S, D> where S: Data<Elem=A>, D: Dimension
930930 /// [6, 6, 7, 7, 8, 8, 0],
931931 /// [6, 6, 7, 7, 8, 8, 0]]));
932932 /// ```
933- pub fn exact_chunks_mut < E > ( & mut self , chunk_size : E ) -> ExactChunksMut < A , D >
933+ pub fn exact_chunks_mut < E > ( & mut self , chunk_size : E ) -> ExactChunksMut < A , D >
934934 where E : IntoDimension < Dim =D > ,
935935 S : DataMut
936936 {
@@ -941,13 +941,13 @@ impl<A, S, D> ArrayBase<S, D> where S: Data<Elem=A>, D: Dimension
941941 ///
942942 /// The windows are all distinct overlapping views of size `window_size`
943943 /// that fit into the array's shape.
944- ///
944+ ///
945945 /// Will yield over no elements if window size is larger
946946 /// than the actual array size of any dimension.
947947 ///
948948 /// The produced element is an `ArrayView<A, D>` with exactly the dimension
949949 /// `window_size`.
950- ///
950+ ///
951951 /// **Panics** if any dimension of `window_size` is zero.<br>
952952 /// (**Panics** if `D` is `IxDyn` and `window_size` does not match the
953953 /// number of array axes.)
0 commit comments