Skip to content

Commit

Permalink
Change elementvise into Element-wise
Browse files Browse the repository at this point in the history
  • Loading branch information
sudarsan2k5 committed Feb 14, 2023
1 parent 4b6c58a commit e692981
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aesara/tensor/math.py
Original file line number Diff line number Diff line change
Expand Up @@ -1771,7 +1771,7 @@ def minimum(x, y):


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


Expand Down

0 comments on commit e692981

Please sign in to comment.