Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: Fix a few typos #130

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions fitparse/profile.py
Original file line number Diff line number Diff line change
Expand Up @@ -9540,7 +9540,7 @@
),
},
),
150: MessageType( # Navigation and race evaluation point for a segment decribing a point along the segment path and time it took each segment leader to reach that point
150: MessageType( # Navigation and race evaluation point for a segment describing a point along the segment path and time it took each segment leader to reach that point
name='segment_point',
mesg_num=150,
fields={
Expand Down Expand Up @@ -9820,7 +9820,7 @@
def_num=0,
units='ms',
),
1: Field( # Each time in the array describes the time at which the gyro sample with the corrosponding index was taken. Limited to 30 samples in each message. The samples may span across seconds. Array size must match the number of samples in gyro_x and gyro_y and gyro_z
1: Field( # Each time in the array describes the time at which the gyro sample with the corresponding index was taken. Limited to 30 samples in each message. The samples may span across seconds. Array size must match the number of samples in gyro_x and gyro_y and gyro_z
name='sample_time_offset',
type=BASE_TYPES[0x84], # uint16
def_num=1,
Expand Down Expand Up @@ -9875,7 +9875,7 @@
def_num=0,
units='ms',
),
1: Field( # Each time in the array describes the time at which the accelerometer sample with the corrosponding index was taken. Limited to 30 samples in each message. The samples may span across seconds. Array size must match the number of samples in accel_x and accel_y and accel_z
1: Field( # Each time in the array describes the time at which the accelerometer sample with the corresponding index was taken. Limited to 30 samples in each message. The samples may span across seconds. Array size must match the number of samples in accel_x and accel_y and accel_z
name='sample_time_offset',
type=BASE_TYPES[0x84], # uint16
def_num=1,
Expand Down Expand Up @@ -10035,7 +10035,7 @@
def_num=0,
units='ms',
),
1: Field( # Offset of PID reading [i] from start_timestamp+start_timestamp_ms. Readings may span accross seconds.
1: Field( # Offset of PID reading [i] from start_timestamp+start_timestamp_ms. Readings may span across seconds.
name='time_offset',
type=BASE_TYPES[0x84], # uint16
def_num=1,
Expand Down Expand Up @@ -10560,7 +10560,7 @@
def_num=0,
units='ms',
),
1: Field( # Each time in the array describes the time at which the compass sample with the corrosponding index was taken. Limited to 30 samples in each message. The samples may span across seconds. Array size must match the number of samples in cmps_x and cmps_y and cmps_z
1: Field( # Each time in the array describes the time at which the compass sample with the corresponding index was taken. Limited to 30 samples in each message. The samples may span across seconds. Array size must match the number of samples in cmps_x and cmps_y and cmps_z
name='sample_time_offset',
type=BASE_TYPES[0x84], # uint16
def_num=1,
Expand Down Expand Up @@ -10615,7 +10615,7 @@
def_num=0,
units='ms',
),
1: Field( # Each time in the array describes the time at which the barometer sample with the corrosponding index was taken. The samples may span across seconds. Array size must match the number of samples in baro_cal
1: Field( # Each time in the array describes the time at which the barometer sample with the corresponding index was taken. The samples may span across seconds. Array size must match the number of samples in baro_cal
name='sample_time_offset',
type=BASE_TYPES[0x84], # uint16
def_num=1,
Expand Down Expand Up @@ -10690,7 +10690,7 @@
scale=1000,
units='s',
),
3: Field( # # of repitions of the movement
3: Field( # # of repetitions of the movement
name='repetitions',
type=BASE_TYPES[0x84], # uint16
def_num=3,
Expand Down
2 changes: 1 addition & 1 deletion tests/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ def test_chained_file(self):
def test_invalid_chained_files(self):
"""Detect errors when files are chained together

Note that 'chained' means just concatinated in this case
Note that 'chained' means just concatenated in this case
"""
try:
FitFile(testfile('activity-activity-filecrc.fit')).parse()
Expand Down