Skip to content

Commit dd78ffe

Browse files
committed
reference: make 'Move and copied types' section more simple
1 parent 912ab64 commit dd78ffe

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/doc/reference.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2509,9 +2509,8 @@ Here are some examples:
25092509
#### Moved and copied types
25102510

25112511
When a [local variable](#variables) is used as an
2512-
[rvalue](#lvalues,-rvalues-and-temporaries) the variable will either be moved
2513-
or copied, depending on its type. All values whose type implements `Copy` are
2514-
copied, all others are moved.
2512+
[rvalue](#lvalues,-rvalues-and-temporaries), the variable will be copied
2513+
if its type implements `Copy`. All others are moved.
25152514

25162515
### Literal expressions
25172516

0 commit comments

Comments
 (0)