aboutsummaryrefslogtreecommitdiff
path: root/xtask
diff options
context:
space:
mode:
authorveetaha <[email protected]>2020-05-10 18:23:29 +0100
committerveetaha <[email protected]>2020-05-10 18:23:29 +0100
commit2af6b4b67ea72b7c8365eb1bc719c896b030123d (patch)
tree59b306accf1d00f52205a3df2ebedf082857f1b5 /xtask
parenta19b164661675be6a03cacfbc652cbd5f06492a0 (diff)
Correct `use` cannot have type args as per flodiebold
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 /// ```