mirror of
https://github.com/boostorg/python.git
synced 2026-01-19 16:32:16 +00:00
Fix misspelled operator name.
This commit is contained in:
@@ -86,8 +86,8 @@ The column of Python Expressions illustrates the expressions that will be suppor
|
||||
[[C++ Expression][Python Method Name][C++ Implementation][Python Expression (primary, secondary)]]
|
||||
[[`self == r`][`__eq__`][`x == y`][`x == y`, `y == x`]]
|
||||
[[`l == self`][`__eq__`][`y == x`][`y == x`, `x == y`]]
|
||||
[[`self != r`][`__nq__`][`x != y`][`x != y`, `y != x`]]
|
||||
[[`l != self`][`__nq__`][`y != x`][`y != x`, `x != y`]]
|
||||
[[`self != r`][`__ne__`][`x != y`][`x != y`, `y != x`]]
|
||||
[[`l != self`][`__ne__`][`y != x`][`y != x`, `x != y`]]
|
||||
[[`self < r`][`__lt__`][`x < y`][`x < y`, `y > x`]]
|
||||
[[`l < self`][`__gt__`][`y < x`][`y > x`, `x < y`]]
|
||||
[[`self > r`][`__gt__`][`x > y`][`x > y`, `y < x`]]
|
||||
|
||||
Reference in New Issue
Block a user