File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -210,7 +210,7 @@ smallest scope that contains the expression and is one of the following:
210
210
* The condition expression of an ` if ` or ` while ` expression, or a ` match `
211
211
guard.
212
212
* The body expression for a match arm.
213
- * The second operand of a [ lazy boolean expression] .
213
+ * Each operand of a [ lazy boolean expression] .
214
214
215
215
> ** Notes** :
216
216
>
@@ -242,11 +242,11 @@ if PrintOnDrop("If condition").0 == "If condition" {
242
242
unreachable! ()
243
243
};
244
244
245
- // Dropped at the end of the statement
245
+ // Dropped before the first ||
246
246
(PrintOnDrop (" first operand" ). 0 == ""
247
- // Dropped at the )
247
+ // Dropped before the )
248
248
|| PrintOnDrop (" second operand" ). 0 == "" )
249
- // Dropped at the end of the expression
249
+ // Dropped before the ;
250
250
|| PrintOnDrop (" third operand" ). 0 == "" ;
251
251
252
252
// Dropped at the end of the function, after local variables.
You can’t perform that action at this time.
0 commit comments