diff options
author | DJMcNab <[email protected]> | 2018-12-18 21:13:55 +0000 |
---|---|---|
committer | DJMcNab <[email protected]> | 2018-12-19 20:12:18 +0000 |
commit | 012537bd6cdf2348dc7bc4ec89c8ecbb9578f5b3 (patch) | |
tree | 2515e3d4363f44382fc0e9727a93a9733156f92b /crates/ra_syntax/src | |
parent | 20bbe0127cc6bfac3ced0c7ed1de4f0526f3bbed (diff) |
Fix at_ts doc comment
Diffstat (limited to 'crates/ra_syntax/src')
-rw-r--r-- | crates/ra_syntax/src/grammar/expressions.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_syntax/src/grammar/expressions.rs b/crates/ra_syntax/src/grammar/expressions.rs index bca32f707..512823ddf 100644 --- a/crates/ra_syntax/src/grammar/expressions.rs +++ b/crates/ra_syntax/src/grammar/expressions.rs | |||
@@ -416,7 +416,7 @@ fn path_expr(p: &mut Parser, r: Restrictions) -> CompletedMarker { | |||
416 | m.complete(p, STRUCT_LIT) | 416 | m.complete(p, STRUCT_LIT) |
417 | } | 417 | } |
418 | EXCL => { | 418 | EXCL => { |
419 | items::macro_call_after_excl(p); | 419 | items::macro_call_after_excl(p); // TODO: Use return type (BlockLike) |
420 | m.complete(p, MACRO_CALL) | 420 | m.complete(p, MACRO_CALL) |
421 | } | 421 | } |
422 | _ => m.complete(p, PATH_EXPR), | 422 | _ => m.complete(p, PATH_EXPR), |