Rollup merge of #23329 - jbcrail:rm-syntax-highlight, r=sanxiyn

As suggested by @steveklabnik in #23254, I removed the redundant Rust syntax highlighting from the documentation.
This commit is contained in:
Manish Goregaokar 2015-03-17 15:20:27 +05:30
commit 0b463b075e
51 changed files with 172 additions and 167 deletions

View file

@ -535,7 +535,7 @@ fn assemble_candidates_from_param_env<'cx,'tcx>(
/// In the case of a nested projection like <<A as Foo>::FooT as Bar>::BarT, we may find
/// that the definition of `Foo` has some clues:
///
/// ```rust
/// ```
/// trait Foo {
/// type FooT : Bar<BarT=i32>
/// }

View file

@ -82,7 +82,7 @@ impl<'tcx> TypeWalker<'tcx> {
///
/// Example: Imagine you are walking `Foo<Bar<int>, uint>`.
///
/// ```rust
/// ```
/// let mut iter: TypeWalker = ...;
/// iter.next(); // yields Foo
/// iter.next(); // yields Bar<int>