Skip to content

Commit 7a199ba

Browse files
committed
doc: missing quote in keyword Send
1 parent 61e84a5 commit 7a199ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/doc/tutorial.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -979,7 +979,7 @@ let mut b = Foo { x: 5, y: box 10 };
979979
b.x = 10;
980980
~~~~
981981

982-
If an object doesn't contain any non-Send types, it consists of a single
982+
If an object doesn't contain any non-`Send` types, it consists of a single
983983
ownership tree and is itself given the `Send` trait which allows it to be sent
984984
between tasks. Custom destructors can only be implemented directly on types
985985
that are `Send`, but non-`Send` types can still *contain* types with custom

0 commit comments

Comments
 (0)