Skip to content

Commit a13ca83

Browse files
rilliangraydon
authored andcommitted
---
yaml --- r: 871 b: refs/heads/master c: c45d21e h: refs/heads/master i: 869: 67d0b9d 867: e6dff7c 863: 735079e v: v3
1 parent 8e6aa65 commit a13ca83

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

[refs]

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
---
2-
refs/heads/master: e5fdd7b63a7365df015c9d08111a8f635b25e058
2+
refs/heads/master: c45d21eb9b5c1dbcf91862943f2a2db0905c6de5

trunk/doc/rust.texi

+2-2
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ roles.
247247
@item Static control over memory allocation, packing and aliasing.
248248

249249
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
251251
way. To allocate such values in the heap, they must be explicitly
252252
@emph{boxed}. A @dfn{box} is a pointer to a heap allocation that holds another
253253
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
13921392
allocation. For these operations, to access the value held in the box requires
13931393
an explicit dereference of the box value. Explicitly dereferencing a box is
13941394
indicated with the unary @emph{star} operator @code{*}. Examples of such
1395-
@dfn{explicit dererence} operations are:
1395+
@dfn{explicit dereference} operations are:
13961396
@itemize
13971397
@item copying box values (@code{x = y})
13981398
@item passing box values to functions (@code{f(x,y)})

0 commit comments

Comments
 (0)