Skip to content
This repository was archived by the owner on Nov 17, 2025. It is now read-only.

Commit e692981

Browse files
committed
Change elementvise into Element-wise
1 parent 4b6c58a commit e692981

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

aesara/tensor/math.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1771,7 +1771,7 @@ def minimum(x, y):
17711771

17721772

17731773
def divmod(x, y):
1774-
"""elementvise divmod, using floor_divide and mod_check"""
1774+
"""Element-wise `divmod`, using `floor_divide` and `mod_check`."""
17751775
return floor_divide(x, y), mod_check(x, y)
17761776

17771777

0 commit comments

Comments
 (0)