aboutsummaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
Diffstat (limited to 'crates')
-rw-r--r--crates/ra_syntax/src/ast/generated/nodes.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_syntax/src/ast/generated/nodes.rs b/crates/ra_syntax/src/ast/generated/nodes.rs
index fc6733d64..3e5624bd2 100644
--- a/crates/ra_syntax/src/ast/generated/nodes.rs
+++ b/crates/ra_syntax/src/ast/generated/nodes.rs
@@ -2410,7 +2410,7 @@ impl TypeArg {
2410} 2410}
2411/// Associated type argument that is passed at generic instantiation site. 2411/// Associated type argument that is passed at generic instantiation site.
2412/// ``` 2412/// ```
2413/// use foo::<'a, u64, bool, ❰ Item = Bar ❱, 42>::baz; 2413/// type Foo = Bar::<'a, u64, bool, ❰ Item = Baz ❱, 42>::Bruh;
2414/// 2414///
2415/// trait Bruh<T>: Iterator<❰ Item: Debug ❱> {} 2415/// trait Bruh<T>: Iterator<❰ Item: Debug ❱> {}
2416/// ``` 2416/// ```