Skip to content

Commit

Permalink
[DATALAD RUNCMD] Do interactive fixing of lapack_lite leftover ambigo…
Browse files Browse the repository at this point in the history
…us typos

=== Do not change lines below ===
{
 "chain": [],
 "cmd": "codespell -w -i 3 -C 2",
 "exit": 0,
 "extra_inputs": [],
 "inputs": [],
 "outputs": [],
 "pwd": "."
}
^^^ Do not change lines above ^^^
  • Loading branch information
yarikoptic committed May 5, 2024
1 parent d5e3114 commit 11adfe3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/stimuli/plot_psychophysics.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*This example shows how to use drifting psychophysics-based stimuli for a retinal implant.*
Along with images, videos, and oter built-in stimuli, pulse2percept supports
Along with images, videos, and other built-in stimuli, pulse2percept supports
generating :py:class:`~pulse2percept.stimuli.GratingStimulus` and :py:class:`~pulse2percept.stimuli.BarStimulus` as stimuli
that can be passed as percepts to implants.
Expand Down
2 changes: 1 addition & 1 deletion pulse2percept/models/beyeler2019.py
Original file line number Diff line number Diff line change
Expand Up @@ -474,7 +474,7 @@ def find_closest_axon(self, bundles, xret=None, yret=None,
Note that each bundle will most likely have a different N
xret, yret : scalar or list of scalars
The x,y location on the retina (in microns, where the fovea is the
origin) for which to find the closests axon.
origin) for which to find the closest axon.
return_index : bool, optional
If True, the function will also return the index into ``bundles``
that represents the closest axon
Expand Down
2 changes: 1 addition & 1 deletion pulse2percept/stimuli/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ def _from_source(self, source):
time = None
electrodes = None
elif isinstance(source, (list, tuple)):
# List or touple with N elements: 1 electrode, N time points
# List or tuple with N elements: 1 electrode, N time points
data = np.array(source, dtype=np.float32).reshape((1, -1))
time = np.arange(data.shape[-1], dtype=np.float32)
electrodes = None
Expand Down

0 comments on commit 11adfe3

Please sign in to comment.