Skip to content

Commit d213499

Browse files
committed
fix speeling
1 parent 4ea0f14 commit d213499

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

inflammation/models.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,16 @@ def load_csv(filename):
1919

2020

2121
def daily_mean(data):
22-
"""Calculate the daily mean of a 2d inflammation data array."""
22+
"""Calculate the daily mean of a 2D inflammation data array."""
2323
return np.mean(data, axis=0)
2424

2525

2626
def daily_max(data):
27-
"""Calculate the daily max of a 2d inflammation data array."""
27+
"""Calculate the daily max of a 2D inflammation data array."""
2828
return np.max(data, axis=0)
2929

3030

3131
def daily_min(data):
32-
"""Calculate the daily min of a 2d inflammation data array."""
32+
"""Calculate the daily min of a 2D inflammation data array."""
3333
return np.min(data, axis=0)
3434

0 commit comments

Comments
 (0)