Skip to content

Commit a7b725b

Browse files
chorman0773ehuss
authored andcommitted
Remove double-spaces and trailing whitespace
1 parent 54ed666 commit a7b725b

File tree

3 files changed

+0
-5
lines changed

3 files changed

+0
-5
lines changed

src/expressions/loop-expr.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,6 @@ r[expr.loop.while.let.syntax]
9494
> &nbsp;&nbsp; `while` `let` [_Pattern_] `=` [_Scrutinee_]<sub>_except lazy boolean operator expression_</sub>
9595
> [_BlockExpression_]
9696
97-
9897
r[expr.loop.while.let.intro]
9998
A `while let` loop is semantically similar to a `while` loop but in place of a condition expression it expects the keyword `let` followed by a pattern, an `=`, a [scrutinee] expression and a block expression.
10099

src/expressions/method-call-expr.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ These cases require a [disambiguating function call syntax] for method and funct
8686
>
8787
> This special case may be removed in the future.
8888
89-
9089
> [!WARNING]
9190
> For [trait objects], if there is an inherent method of the same name as a trait method, it will give a compiler error when trying to call the method in a method call expression.
9291
> Instead, you can call the method using [disambiguating function call syntax], in which case it calls the trait method, not the inherent method.

src/expressions/operator-expr.md

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,6 @@ unsafe { f1_ptr.write(true); }
158158
let init = unsafe { uninit.assume_init() };
159159
```
160160

161-
162161
## The dereference operator
163162

164163
r[expr.deref]
@@ -195,7 +194,6 @@ assert_eq!(*y, 11);
195194

196195
r[expr.try]
197196

198-
199197
r[expr.try.syntax]
200198
> **<sup>Syntax</sup>**\
201199
> _ErrorPropagationExpression_ :\
@@ -387,7 +385,6 @@ a == b;
387385
::std::cmp::PartialEq::eq(&a, &b);
388386
```
389387

390-
391388
This means that the operands don't have to be moved out of.
392389

393390
r[expr.cmp.behaviour]

0 commit comments

Comments
 (0)