about summary refs log tree commit diff
path: root/src/doc/reference.md
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2014-09-19 17:03:50 -0400
committerSteve Klabnik <steve@steveklabnik.com>2014-09-22 17:54:10 -0400
commitc765178bf61bb9f16ef3806deef14b5962336f2d (patch)
tree671dabe2a3b3ba1402c1ef816468d8fd233d56e4 /src/doc/reference.md
parent64813d33d825cbd155ef237accc9fe8c8b670ed2 (diff)
downloadrust-c765178bf61bb9f16ef3806deef14b5962336f2d.tar.gz
rust-c765178bf61bb9f16ef3806deef14b5962336f2d.zip
clean up some references to 'owned'
Diffstat (limited to 'src/doc/reference.md')
-rw-r--r--src/doc/reference.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/reference.md b/src/doc/reference.md
index d56c8286fcb..21da810a300 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`