From dd78ffe828ac1ea09949bc9c5bc07082088ceba4 Mon Sep 17 00:00:00 2001 From: Tshepang Lekhonkhobe Date: Mon, 6 Jul 2015 22:10:21 +0200 Subject: [PATCH] reference: make 'Move and copied types' section more simple --- src/doc/reference.md | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/doc/reference.md b/src/doc/reference.md index a3e13acccae..199a0894b6e 100644 --- a/src/doc/reference.md +++ b/src/doc/reference.md @@ -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