diff options
author | Aleksey Kladov <[email protected]> | 2020-10-07 12:11:33 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2020-10-07 12:11:33 +0100 |
commit | 5359e8f7429a7b6db7b1ab1ced5b19ff05d79123 (patch) | |
tree | 97565fcd28fe7e557049e468fc930a9827e6bf77 /docs | |
parent | 76c68dbefe1af573967cb3a4338c40ff61119144 (diff) |
minor
Diffstat (limited to 'docs')
-rw-r--r-- | docs/dev/style.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/dev/style.md b/docs/dev/style.md index 7aed7816e..59067d234 100644 --- a/docs/dev/style.md +++ b/docs/dev/style.md | |||
@@ -401,7 +401,7 @@ fn foo() -> Option<Bar> { | |||
401 | Use `<`/`<=`, avoid `>`/`>=`. | 401 | Use `<`/`<=`, avoid `>`/`>=`. |
402 | Less-then comparisons are more intuitive, they correspond spatially to [real line](https://en.wikipedia.org/wiki/Real_line) | 402 | Less-then comparisons are more intuitive, they correspond spatially to [real line](https://en.wikipedia.org/wiki/Real_line) |
403 | 403 | ||
404 | ```rs | 404 | ```rust |
405 | // Good | 405 | // Good |
406 | assert!(lo <= x && x <= hi); | 406 | assert!(lo <= x && x <= hi); |
407 | 407 | ||