about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-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`