From c765178bf61bb9f16ef3806deef14b5962336f2d Mon Sep 17 00:00:00 2001 From: Steve Klabnik Date: Fri, 19 Sep 2014 17:03:50 -0400 Subject: [PATCH] clean up some references to 'owned' --- src/doc/reference.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/doc/reference.md b/src/doc/reference.md index d56c8286fcb3..21da810a3009 100644 --- a/src/doc/reference.md +++ b/src/doc/reference.md @@ -2867,7 +2867,7 @@ operators, before the expression they apply to. two's complement representation of the value. * `box` : [Boxing](#pointer-types) operators. Allocate a box to hold the value they - are applied to, and store the value in it. `box` creates an owned box. + are applied to, and store the value in it. `box` creates a box. * `&` : Borrow operator. Returns a reference, pointing to its operand. The operand of a borrow is statically proven to outlive the resulting pointer. If the @@ -3855,7 +3855,7 @@ components of the type. The kinds are: * `Send` : Types of this kind can be safely sent between tasks. - This kind includes scalars, owning pointers, owned closures, and + This kind includes scalars, boxes, procs, and structural types containing only other owned types. All `Send` types are `'static`. * `Copy`