Skip to content

Commit

Permalink
fix trailing whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
zm711 committed Jan 16, 2024
1 parent 763effa commit a9e742d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/gallery/advanced_io/plot_iterative_write.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
#
Expand Down
2 changes: 1 addition & 1 deletion docs/gallery/general/extensions.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a9e742d

Please sign in to comment.