Commit 16f3a6a4 authored by Marc Tamlyn's avatar Marc Tamlyn
Browse files

Fixed #21865 -- Incorrect signs in documented example.

Maths is hard.
parent 89df5180
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -162,7 +162,7 @@ The implementation is::
          lhs, lhs_params = qn.compile(self.lhs.lhs)
          rhs, rhs_params = self.process_rhs(qn, connection)
          params = lhs_params + rhs_params + lhs_params + rhs_params
          return '%s > %s AND %s < -%s' % (lhs, rhs, lhs, rhs), params
          return '%s < %s AND %s > -%s' % (lhs, rhs, lhs, rhs), params

  AbsoluteValue.register_lookup(AbsoluteValueLessThan)