Skip to content

Commit 2138c17

Browse files
MAINT: Fix typos found by codespell (mne-tools#12021)
1 parent 079c868 commit 2138c17

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

mne/io/base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2398,7 +2398,7 @@ def _get_ch_factors(inst, units, picks_idxs):
23982398
Returns
23992399
-------
24002400
ch_factors : ndarray of floats, shape(len(picks),)
2401-
The sacling factors for each channel, ordered according
2401+
The scaling factors for each channel, ordered according
24022402
to picks.
24032403
24042404
"""

mne/io/brainvision/brainvision.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -769,7 +769,7 @@ def _get_hdr_info(hdr_fname, eog, misc, scale):
769769
for filt in highpass
770770
]
771771
info["highpass"] = np.max(np.array(highpass, dtype=np.float64))
772-
# Coveniently enough 1 / np.inf = 0.0, so this works for
772+
# Conveniently enough 1 / np.inf = 0.0, so this works for
773773
# DC / no highpass filter
774774
# filter time constant t [secs] to Hz conversion: 1/2*pi*t
775775
info["highpass"] = 1.0 / (2 * np.pi * info["highpass"])

0 commit comments

Comments
 (0)