You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: clippy_lints/src/eval_order_dependence.rs
+2-2
Original file line number
Diff line number
Diff line change
@@ -15,8 +15,8 @@ declare_clippy_lint! {
15
15
/// order of sub-expressions.
16
16
///
17
17
/// ### Why is this bad?
18
-
/// It is often confusing to read. In addition, the
19
-
/// sub-expression evaluation order for Rust is not well documented.
18
+
/// It is often confusing to read. As described [here](https://doc.rust-lang.org/reference/expressions.html?highlight=subexpression#evaluation-order-of-operands),
19
+
/// the operands of these expressions are evaluated before applying the effects of the expression.
20
20
///
21
21
/// ### Known problems
22
22
/// Code which intentionally depends on the evaluation
0 commit comments