Skip to content

Commit 3d4dd40

Browse files
committed
Fix README typo
1 parent 1153f69 commit 3d4dd40

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,14 +76,14 @@ The functions takes two iterable arguments, which are turned into sets, and the
7676
set_symdiff('foo bar', 'foo baz') -> {'z', 'r'}
7777

7878

79-
### Computing cumultative sums and products
79+
### Computing cumulative sums and products
8080

81-
Compute the cumultative sum of an iterable:
81+
Compute the cumulative sum of an iterable:
8282

8383
cumsum([1,2,3,4,5]) -> [1, 3, 6, 10, 15]
8484
cumsum([0.02809, 0.05619, 0.08646, 0.11919, 0.15192, 0.18465, 1.31694]) -> [0.02809, 0.08428, 0.17074, 0.28993, 0.44185, 0.6265000000000001, 1.94344]
8585

86-
And a cumultative product
86+
And a cumulative product
8787

8888
cumprod([1, 2, 3, 4, 5]) -> [1, 2, 6, 24, 120]
8989
cumprod([0.02809, 0.05619, 0.08646, 0.11919, 0.15192, 0.18465, 1.31694]) -> [0.02809, 0.0015783771, 0.000136466484066, 1.626544023582654e-05, 2.471045680626768e-06, 4.5627858492773275e-07, 6.008915196347284e-07]

0 commit comments

Comments
 (0)