Skip to content

Commit eb06f9b

Browse files
committed
oops
1 parent 05aac3b commit eb06f9b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/fast_array_utils/stats/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -334,9 +334,9 @@ def max(
334334
... ])
335335
>>> max(x)
336336
2
337-
>>> sum(x, axis=0)
337+
>>> max(x, axis=0)
338338
array([0, 1, 2])
339-
>>> sum(x, axis=1)
339+
>>> max(x, axis=1)
340340
array([2, 0])
341341
342342
See Also

0 commit comments

Comments
 (0)