Skip to content

Commit

Permalink
Add missing inline code delimiters around Vec<T>
Browse files Browse the repository at this point in the history
  • Loading branch information
baskerville committed Jul 16, 2016
1 parent c4788c2 commit fc0d037
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/doc/nomicon/phantom-data.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Good to go!

Nope.

The drop checker will generously determine that Vec<T> does not own any values
The drop checker will generously determine that `Vec<T>` does not own any values
of type T. This will in turn make it conclude that it doesn't need to worry
about Vec dropping any T's in its destructor for determining drop check
soundness. This will in turn allow people to create unsoundness using
Expand Down

0 comments on commit fc0d037

Please sign in to comment.