Skip to content

Commit

Permalink
doc: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
leuraph authored and erdogant committed Apr 21, 2024
1 parent 444a9e6 commit 6c75ccf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ismember/ismember.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,8 +140,8 @@ def _compute(a_vec, b_vec):
def is_row_in(a, b):
"""
Calculates `a` in `b`, broadcasting over `a` only.
Returns a boolean array of the same shape as `a` that is True
where a row of `a` is in `b` and False otherwise.
Returns a boolean array that is True where a row
of `a` is in `b` and False otherwise.
"""
# Get the unique row index
_, rev = np.unique(np.concatenate((b, a)), axis=0, return_inverse=True)
Expand Down

0 comments on commit 6c75ccf

Please sign in to comment.