1 parent 65be0e0 commit 2f6e728Copy full SHA for 2f6e728
1 file changed
doc/reference/operators.qbk
@@ -86,8 +86,8 @@ The column of Python Expressions illustrates the expressions that will be suppor
86
[[C++ Expression][Python Method Name][C++ Implementation][Python Expression (primary, secondary)]]
87
[[`self == r`][`__eq__`][`x == y`][`x == y`, `y == x`]]
88
[[`l == self`][`__eq__`][`y == x`][`y == x`, `x == y`]]
89
-[[`self != r`][`__nq__`][`x != y`][`x != y`, `y != x`]]
90
-[[`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`]]
91
[[`self < r`][`__lt__`][`x < y`][`x < y`, `y > x`]]
92
[[`l < self`][`__gt__`][`y < x`][`y > x`, `x < y`]]
93
[[`self > r`][`__gt__`][`x > y`][`x > y`, `y < x`]]
0 commit comments