Skip to content

Commit

Permalink
fix some doctring quotes/backticks
Browse files Browse the repository at this point in the history
  • Loading branch information
HighDiceRoller committed Aug 20, 2024
1 parent 5afd368 commit 724cb24
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/icepool/expression/multiset_expression.py
Original file line number Diff line number Diff line change
Expand Up @@ -757,24 +757,24 @@ def maximum_match(
Args:
comparison: One of the following:
* '==': The same as `intersection(other)` if `keep='matched'`,
* `'=='`: The same as `intersection(other)` if `keep='matched'`,
or `difference(other)` if `keep=unmatched`.
* '<=': Elements of `self` will be matched with elements of
* `'<='`: Elements of `self` will be matched with elements of
`other` such that the element from `self` is <= the element
from `other`, but is otherwise as high as possible.
This requires that outcomes be evaluated in descending
order.
* `<`: Elements of `self` will be matched with elements of
* `'<'`: Elements of `self` will be matched with elements of
`other` such that the element from `self` is < the element
from `other`, but is otherwise as high as possible.
This requires that outcomes be evaluated in descending
order.
* '>=': Elements of `self` will be matched with elements of
* `'>='`: Elements of `self` will be matched with elements of
`other` such that the element from `self` is >= the element
from `other`, but is otherwise as low as possible.
This requires that outcomes be evaluated in ascending
order.
* `>`: Elements of `self` will be matched with elements of
* `'>'`: Elements of `self` will be matched with elements of
`other` such that the element from `self` is > the element
from `other`, but is otherwise as low as possible.
This requires that outcomes be evaluated in ascending
Expand Down

0 comments on commit 724cb24

Please sign in to comment.