Skip to content

Commit f9dbd9f

Browse files
committed
[Python] Fix typo in doc
1 parent 0d6187a commit f9dbd9f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: python/pycubool/matrix.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -720,7 +720,7 @@ def ewisemult(self, other, out=None, time_check=False):
720720
721721
>>> a = Matrix.from_lists((4, 4), [0, 1, 2, 3], [2, 3, 0, 1])
722722
>>> b = Matrix.from_lists((4, 4), [0, 1, 3, 3], [2, 3, 0, 2])
723-
>>> print(a.ewiseadd(b))
723+
>>> print(a.ewisemult(b))
724724
'
725725
0 1 2 3
726726
0 | . . 1 . | 0

0 commit comments

Comments
 (0)