about summary refs log tree commit diff
diff options
context:
space:
mode:
authorYazhong Liu <yorkiefixer@gmail.com>2014-07-15 01:26:41 +0800
committerYazhong Liu <yorkiefixer@gmail.com>2014-07-15 01:26:41 +0800
commit7a199ba9f1f061890a63c38a57c87ad04455986b (patch)
tree0a58d692d04ecca9a5077147047b13a3de96fe6b
parent61e84a5dcaf923ee4f8c98e8b7911650cf215f54 (diff)
downloadrust-7a199ba9f1f061890a63c38a57c87ad04455986b.tar.gz
rust-7a199ba9f1f061890a63c38a57c87ad04455986b.zip
doc: missing quote in keyword Send
-rw-r--r--src/doc/tutorial.md2
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