File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
branches/dist-snap/src/doc Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ refs/heads/try: 189b7332968972f34cdbbbd9b62d97ababf53059
6
6
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
7
7
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8
8
refs/heads/try2: 147ecfdd8221e4a4d4e090486829a06da1e0ca3c
9
- refs/heads/dist-snap: 64813d33d825cbd155ef237accc9fe8c8b670ed2
9
+ refs/heads/dist-snap: c765178bf61bb9f16ef3806deef14b5962336f2d
10
10
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
11
11
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
12
12
refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0
Original file line number Diff line number Diff line change @@ -2867,7 +2867,7 @@ operators, before the expression they apply to.
2867
2867
two's complement representation of the value.
2868
2868
* ` box `
2869
2869
: [ Boxing] ( #pointer-types ) operators. Allocate a box to hold the value they
2870
- are applied to, and store the value in it. ` box ` creates an owned box.
2870
+ are applied to, and store the value in it. ` box ` creates a box.
2871
2871
* ` & `
2872
2872
: Borrow operator. Returns a reference, pointing to its operand. The operand
2873
2873
of a borrow is statically proven to outlive the resulting pointer. If the
@@ -3855,7 +3855,7 @@ components of the type. The kinds are:
3855
3855
3856
3856
* ` Send `
3857
3857
: Types of this kind can be safely sent between tasks.
3858
- This kind includes scalars, owning pointers, owned closures , and
3858
+ This kind includes scalars, boxes, procs , and
3859
3859
structural types containing only other owned types.
3860
3860
All ` Send ` types are ` 'static ` .
3861
3861
* ` Copy `
You can’t perform that action at this time.
0 commit comments