diff options
| author | Yazhong Liu <yorkiefixer@gmail.com> | 2014-07-15 01:26:41 +0800 |
|---|---|---|
| committer | Yazhong Liu <yorkiefixer@gmail.com> | 2014-07-15 01:26:41 +0800 |
| commit | 7a199ba9f1f061890a63c38a57c87ad04455986b (patch) | |
| tree | 0a58d692d04ecca9a5077147047b13a3de96fe6b | |
| parent | 61e84a5dcaf923ee4f8c98e8b7911650cf215f54 (diff) | |
| download | rust-7a199ba9f1f061890a63c38a57c87ad04455986b.tar.gz rust-7a199ba9f1f061890a63c38a57c87ad04455986b.zip | |
doc: missing quote in keyword Send
| -rw-r--r-- | src/doc/tutorial.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/tutorial.md b/src/doc/tutorial.md index 0522def2d0f..10f67876e50 100644 --- a/src/doc/tutorial.md +++ b/src/doc/tutorial.md @@ -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 |
