Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/ide-assists/src/handlers/remove_dbg.rs')
| -rw-r--r-- | crates/ide-assists/src/handlers/remove_dbg.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ide-assists/src/handlers/remove_dbg.rs b/crates/ide-assists/src/handlers/remove_dbg.rs index 01cd32f55c..be91eacbe7 100644 --- a/crates/ide-assists/src/handlers/remove_dbg.rs +++ b/crates/ide-assists/src/handlers/remove_dbg.rs @@ -150,7 +150,7 @@ mod tests { #[test] fn test_remove_dbg_keep_semicolon_in_let() { - // https://github.com/rust-analyzer/rust-analyzer/issues/5129#issuecomment-651399779 + // https://github.com/rust-lang/rust-analyzer/issues/5129#issuecomment-651399779 check( r#"let res = $0dbg!(1 * 20); // needless comment"#, r#"let res = 1 * 20; // needless comment"#, |