aboutsummaryrefslogtreecommitdiff
path: root/xtask
diff options
context:
space:
mode:
Diffstat (limited to 'xtask')
-rw-r--r--xtask/src/ast_src.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/xtask/src/ast_src.rs b/xtask/src/ast_src.rs
index 61580bd1a..e68c77a62 100644
--- a/xtask/src/ast_src.rs
+++ b/xtask/src/ast_src.rs
@@ -1961,7 +1961,7 @@ pub(crate) const AST_SRC: AstSrc = AstSrc {
1961 1961
1962 /// Associated type argument that is passed at generic instantiation site. 1962 /// Associated type argument that is passed at generic instantiation site.
1963 /// ``` 1963 /// ```
1964 /// use foo::<'a, u64, bool, ❰ Item = Bar ❱, 42>::baz; 1964 /// type Foo = Bar::<'a, u64, bool, ❰ Item = Baz ❱, 42>::Bruh;
1965 /// 1965 ///
1966 /// trait Bruh<T>: Iterator<❰ Item: Debug ❱> {} 1966 /// trait Bruh<T>: Iterator<❰ Item: Debug ❱> {}
1967 /// ``` 1967 /// ```