Skip to content

Commit 15fac79

Browse files
committed
---
yaml --- r: 143359 b: refs/heads/try2 c: 9aab7e5 h: refs/heads/master i: 143357: abd08d7 143355: 1de7bf1 143351: aea37ab 143343: a0f70bd 143327: 24ba556 143295: 95d2148 143231: ea123f4 143103: 46b113f 142847: c202baf 142335: 0344d92 141311: 3cb54b9 139263: 8878be9 v: v3
1 parent 4b5fd80 commit 15fac79

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ refs/heads/snap-stage3: 78a7676898d9f80ab540c6df5d4c9ce35bb50463
55
refs/heads/try: 519addf6277dbafccbb4159db4b710c37eaa2ec5
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8-
refs/heads/try2: 8fb77c70993b8f020a9398a458e9a6aea02eb70b
8+
refs/heads/try2: 9aab7e59d752a2ac14e62e309d58f5eb9a60266d
99
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
1010
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1111
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/try2/doc/tutorial.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -992,7 +992,7 @@ task-local garbage collector. It will be destroyed at some point after there
992992
are no references left to the box, no later than the end of the task. Managed
993993
boxes lack an owner, so they start a new ownership tree and don't inherit
994994
mutability. They do own the contained object, and mutability is defined by the
995-
type of the shared box (`@` or `@mut`). An object containing a managed box is
995+
type of the managed box (`@` or `@mut`). An object containing a managed box is
996996
not `Owned`, and can't be sent between tasks.
997997

998998
~~~~
@@ -1089,8 +1089,8 @@ we might like to compute the distance between `on_the_stack` and
10891089
to define a function that takes two arguments of type point—that is,
10901090
it takes the points by value. But this will cause the points to be
10911091
copied when we call the function. For points, this is probably not so
1092-
bad, but often copies are expensive or, worse, if there are mutable
1093-
fields, they can change the semantics of your program. So we’d like to
1092+
bad, but often copies are expensive or, worse, if copied data are in mutable
1093+
slots, they can change the semantics of your program. So we’d like to
10941094
define a function that takes the points by pointer. We can use
10951095
borrowed pointers to do this:
10961096

0 commit comments

Comments
 (0)