Update remaining GitHub URLs

This commit is contained in:
Jonas Schievink 2022-07-08 15:44:49 +02:00
parent 09abd76c6a
commit 6c6ae965ba
57 changed files with 145 additions and 145 deletions

View file

@ -400,7 +400,7 @@ fn concat_expand(
for (i, mut t) in tt.token_trees.iter().enumerate() {
// FIXME: hack on top of a hack: `$e:expr` captures get surrounded in parentheses
// to ensure the right parsing order, so skip the parentheses here. Ideally we'd
// implement rustc's model. cc https://github.com/rust-analyzer/rust-analyzer/pull/10623
// implement rustc's model. cc https://github.com/rust-lang/rust-analyzer/pull/10623
if let tt::TokenTree::Subtree(tt::Subtree { delimiter: Some(delim), token_trees }) = t {
if let [tt] = &**token_trees {
if delim.kind == tt::DelimiterKind::Parenthesis {