minor: fix a typo in the style guide

This commit is contained in:
Waffle Maybe 2022-01-26 17:07:17 +03:00 committed by GitHub
parent 2cb85c14b6
commit 6ab66d4c9a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -927,13 +927,13 @@ When doing multiple comparisons use `<`/`<=`, avoid `>`/`>=`.
assert!(lo <= x && x <= hi); assert!(lo <= x && x <= hi);
assert!(r1 < l2 || r2 < l1); assert!(r1 < l2 || r2 < l1);
assert!(x < y); assert!(x < y);
assert!(x > 0); assert!(0 < x);
// BAD // BAD
assert!(x >= lo && x <= hi); assert!(x >= lo && x <= hi);
assert!(r1 < l2 || l1 > r2); assert!(r1 < l2 || l1 > r2);
assert!(y > x); assert!(y > x);
assert!(0 > x); assert!(x > 0);
``` ```
**Rationale:** Less-then comparisons are more intuitive, they correspond spatially to [real line](https://en.wikipedia.org/wiki/Real_line). **Rationale:** Less-then comparisons are more intuitive, they correspond spatially to [real line](https://en.wikipedia.org/wiki/Real_line).