fixed typo in README (#2)

This commit is contained in:
Gajraj Singh Chouhan
2021-02-04 06:37:40 +05:30
committed by GitHub
parent f55ff078e8
commit a43d5009e2
+1 -1
View File
@@ -26,7 +26,7 @@ For example, `calculate([0,1,2,3,4,5,6,7,8])` should return:
'standard deviation': [[2.449489742783178, 2.449489742783178, 2.449489742783178], [0.816496580927726, 0.816496580927726, 0.816496580927726], 2.581988897471611],
'max': [[6, 7, 8], [2, 5, 8], 8],
'min': [[0, 1, 2], [0, 3, 6], 0],
'sum': [[9, 12, 15], [3, 12, 21], 36]}
'sum': [[9, 12, 15], [3, 12, 21], 36]
}
```