Skip to content

Commit 2bf5cc9

Browse files
Restoring whitespaces
1 parent 153b1f2 commit 2bf5cc9

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/impl_methods.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -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.)

src/iterators/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -718,7 +718,7 @@ macro_rules! outer_iter_split_at_impl {
718718
{
719719
assert!(index <= self.iter.len);
720720
let right_ptr = if index != self.iter.len {
721-
unsafe { self.iter.offset(index) }
721+
unsafe { self.iter.offset(index) }
722722
}
723723
else {
724724
self.iter.ptr

0 commit comments

Comments
 (0)