Skip to content

Commit d16ec7b

Browse files
committed
Ignore
1 parent 9dc05f3 commit d16ec7b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

compiler/rustc_ast/src/ast.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -2668,7 +2668,7 @@ pub struct Trait {
26682668
/// are concatenated together.
26692669
///
26702670
/// Take this example:
2671-
/// ```rust, ignore
2671+
/// ```ignore (only-for-syntax-highlight)
26722672
/// trait Foo {
26732673
/// type Assoc<'a, 'b> where Self: 'a, Self: 'b;
26742674
/// }
@@ -2677,9 +2677,9 @@ pub struct Trait {
26772677
/// // ^^^^^^^^^^^^^^ first where clause
26782678
/// // ^^^^^^^^^^^^^^ second where clause
26792679
/// }
2680+
/// ```
26802681
///
26812682
/// If there is no where clause, then this is `false` with `DUMMY_SP`.
2682-
/// ```
26832683
#[derive(Copy, Clone, Encodable, Decodable, Debug, Default)]
26842684
pub struct TyAliasWhereClause(pub bool, pub Span);
26852685

0 commit comments

Comments
 (0)