Skip to content

Commit 1447e0a

Browse files
committed
Fix a few instances of inflammation being misspelled.
1 parent 31f5991 commit 1447e0a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

_episodes/01-numpy.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1134,11 +1134,11 @@ the graphs will actually be squeezed together more closely.)
11341134
> {: .solution}
11351135
{: .challenge}
11361136
1137-
>## Change In Inflamation
1137+
>## Change In Inflammation
11381138
>
11391139
>This patient data is _longitudinal_ in the sense that each row represents a
11401140
>series of observations relating to one individual. This means that change
1141-
>inflamation is a meaningful concept.
1141+
>inflammation is a meaningful concept.
11421142
>
11431143
>The `numpy.diff()` function takes a NumPy array and returns the
11441144
>difference along a specified axis.
@@ -1148,7 +1148,7 @@ the graphs will actually be squeezed together more closely.)
11481148
> > ## Solution
11491149
> > Since the row axis (0) is patients, it does not make sense to get the
11501150
> > difference between two arbitrary patients. The column axis (1) is in
1151-
> > days, so the differnce is the change in inflamation -- a meaningful
1151+
> > days, so the differnce is the change in inflammation -- a meaningful
11521152
> > concept.
11531153
> >
11541154
> > ~~~

0 commit comments

Comments
 (0)