Skip to content

Commit

Permalink
Small fix to bpod_com_protocol docs
Browse files Browse the repository at this point in the history
  • Loading branch information
MicBoucinha committed Aug 27, 2019
1 parent 4f6dc3b commit eaf5d90
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pybpodapi/bpod/bpod_com_protocol.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ def _bpodcom_reset_clock(self):

def _bpodcom_stop_trial(self):
"""
Pause ongoing trial (We recommend using computer-side pauses between trials, to keep data uniform)
Stops ongoing trial (We recommend using computer-side pauses between trials, to keep data uniform)
"""
logger.debug("Pausing trial")
self._arcom.write_char(SendMessageHeader.EXIT_AND_RETURN)
Expand All @@ -176,7 +176,7 @@ def _bpodcom_pause_trial(self):

def _bpodcom_resume_trial(self):
"""
Pause ongoing trial (We recommend using computer-side pauses between trials, to keep data uniform)
Resumes ongoing trial (We recommend using computer-side pauses between trials, to keep data uniform)
"""
logger.debug("Resume trial")
bytes2send = ArduinoTypes.get_uint8_array([ord(SendMessageHeader.PAUSE_TRIAL), 1])
Expand Down

0 comments on commit eaf5d90

Please sign in to comment.