Skip to content

Commit 2f6e728

Browse files
committed
Fix misspelled operator name.
1 parent 65be0e0 commit 2f6e728

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/reference/operators.qbk

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,8 @@ The column of Python Expressions illustrates the expressions that will be suppor
8686
[[C++ Expression][Python Method Name][C++ Implementation][Python Expression (primary, secondary)]]
8787
[[`self == r`][`__eq__`][`x == y`][`x == y`, `y == x`]]
8888
[[`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`]]
89+
[[`self != r`][`__ne__`][`x != y`][`x != y`, `y != x`]]
90+
[[`l != self`][`__ne__`][`y != x`][`y != x`, `x != y`]]
9191
[[`self < r`][`__lt__`][`x < y`][`x < y`, `y > x`]]
9292
[[`l < self`][`__gt__`][`y < x`][`y > x`, `x < y`]]
9393
[[`self > r`][`__gt__`][`x > y`][`x > y`, `y < x`]]

0 commit comments

Comments
 (0)