Skip to content

Commit

Permalink
reference: make 'Move and copied types' section more simple
Browse files Browse the repository at this point in the history
  • Loading branch information
tshepang committed Jul 6, 2015
1 parent 912ab64 commit dd78ffe
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/doc/reference.md
Expand Up @@ -2509,9 +2509,8 @@ Here are some examples:
#### Moved and copied types

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

### Literal expressions

Expand Down

0 comments on commit dd78ffe

Please sign in to comment.