auto merge of #15666 : yorkie/rust/patch-1, r=alexcrichton

This commit is contained in:
bors 2014-07-14 18:06:22 +00:00
commit e62479133b

View File

@ -979,7 +979,7 @@ let mut b = Foo { x: 5, y: box 10 };
b.x = 10;
~~~~
If an object doesn't contain any non-Send types, it consists of a single
If an object doesn't contain any non-`Send` types, it consists of a single
ownership tree and is itself given the `Send` trait which allows it to be sent
between tasks. Custom destructors can only be implemented directly on types
that are `Send`, but non-`Send` types can still *contain* types with custom