File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
---
2
- refs/heads/master: e5fdd7b63a7365df015c9d08111a8f635b25e058
2
+ refs/heads/master: c45d21eb9b5c1dbcf91862943f2a2db0905c6de5
Original file line number Diff line number Diff line change @@ -247,7 +247,7 @@ roles.
247
247
@item Static control over memory allocation, packing and aliasing.
248
248
249
249
Many values in Rust are allocated @emph {within } their containing stack-frame
250
- or parent strucure . Numbers, records, tuples and tags are all allocated this
250
+ or parent structure . Numbers, records, tuples and tags are all allocated this
251
251
way. To allocate such values in the heap, they must be explicitly
252
252
@emph {boxed }. A @dfn {box } is a pointer to a heap allocation that holds another
253
253
value, its @emph {content }. If the content of a box is a @emph {state } value --
@@ -1392,7 +1392,7 @@ automatically adjusting reference counts on the associated heap
1392
1392
allocation. For these operations, to access the value held in the box requires
1393
1393
an explicit dereference of the box value. Explicitly dereferencing a box is
1394
1394
indicated with the unary @emph {star } operator @code {* }. Examples of such
1395
- @dfn {explicit dererence } operations are:
1395
+ @dfn {explicit dereference } operations are:
1396
1396
@itemize
1397
1397
@item copying box values (@code {x = y })
1398
1398
@item passing box values to functions (@code {f(x ,y) })
You can’t perform that action at this time.
0 commit comments