File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
branches/tmp/src/doc/trpl Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ refs/heads/building: 126db549b038c84269a1e4fe46f051b2c15d6970
32
32
refs/heads/beta: cd7d89af9169885642d43597302af69f842bbd78
33
33
refs/heads/windistfix: 7608dbad651f02e837ed05eef3d74a6662a6e928
34
34
refs/tags/1.0.0-alpha: e42bd6d93a1d3433c486200587f8f9e12590a4d7
35
- refs/heads/tmp: 7044f4a3944c7b4d1169b040501a44df7f8b2106
35
+ refs/heads/tmp: 86a821e5d15cc61ddc24f7208b80c171f21efaaf
36
36
refs/tags/1.0.0-alpha.2: 4c705f6bc559886632d3871b04f58aab093bfa2f
37
37
refs/tags/homu-tmp: 704c2ee730d2e948d11a2edd77e3f35de8329a6e
38
38
refs/heads/gate: 97c84447b65164731087ea82685580cc81424412
Original file line number Diff line number Diff line change @@ -148,7 +148,7 @@ a few tricks up their sleeves.
148
148
For example, they’re [ immutable] [ immutable ] by default. That’s why our example
149
149
uses ` mut ` : it makes a binding mutable, rather than immutable. ` let ` doesn’t
150
150
take a name on the left hand side, it actually accepts a
151
- ‘[ pattern] [ patterns ] ’. We’ll use patterns more later. It’s easy enough
151
+ ‘[ pattern] [ patterns ] ’. We’ll use patterns later. It’s easy enough
152
152
to use for now:
153
153
154
154
``` rust
Original file line number Diff line number Diff line change @@ -277,9 +277,9 @@ allocated on the heap:
277
277
| 0 | x | ?????? |
278
278
279
279
[ drop ] : drop.html
280
- [ ^ moving ] : We can make the memory live longer by transferring ownership,
281
- sometimes called ‘moving out of the box’. More complex examples will
282
- be covered later.
280
+ [ moving] : We can make the memory live longer by transferring ownership,
281
+ sometimes called ‘moving out of the box’. More complex examples will
282
+ be covered later.
283
283
284
284
285
285
And then the stack frame goes away, freeing all of our memory.
You can’t perform that action at this time.
0 commit comments