From a9e742d7ce35016d4b414dfa4a8dfced45174d34 Mon Sep 17 00:00:00 2001 From: zm711 <92116279+zm711@users.noreply.github.com> Date: Tue, 16 Jan 2024 14:38:32 -0500 Subject: [PATCH] fix trailing whitespace --- docs/gallery/advanced_io/plot_iterative_write.py | 2 +- docs/gallery/general/extensions.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/gallery/advanced_io/plot_iterative_write.py b/docs/gallery/advanced_io/plot_iterative_write.py index 26983e2b4..958981a0b 100644 --- a/docs/gallery/advanced_io/plot_iterative_write.py +++ b/docs/gallery/advanced_io/plot_iterative_write.py @@ -35,7 +35,7 @@ # **1)** data is not available in-memory but arrives in subblocks as the stream progresses # **2)** caching the data of a stream in-memory is often prohibitively expensive and volatile # **3)** the total size of the data is often unknown ahead of time. -# Iterative data write allows us to address issues 1) and 2) by enabling us to save data to a +# Iterative data write allows us to address issues 1) and 2) by enabling us to save data to a # file incrementally as it arrives from the data stream. Issue 3) is addressed in the HDF5 # storage backend via support for chunking, enabling the creation of resizable arrays. # diff --git a/docs/gallery/general/extensions.py b/docs/gallery/general/extensions.py index c69677fc4..4ec8f4749 100644 --- a/docs/gallery/general/extensions.py +++ b/docs/gallery/general/extensions.py @@ -379,7 +379,7 @@ class PotatoSack(MultiContainerInterface): # ----------------------------------------------------- # # Here we show how to create extensions by creating a data class for a -# cortical surface mesh. This data type is particularly important for ECoG data, since we need to know where +# cortical surface mesh. This data type is particularly important for ECoG data, since we need to know where # each electrode is with respect to the gyri and sulci. Surface mesh objects contain two types of data: # # 1. `vertices`, which is an (n, 3) matrix of floats that represents points in 3D space