Unnamed repository; edit this file 'description' to name the repository.
Auto merge of #18078 - cuishuang:master, r=Veykril
Remove unnecessary symbols and add missing symbols
bors 2024-09-11
parent a539fa9 · parent 2f29fea · commit 14a18b4
-rw-r--r--crates/hir-expand/src/declarative.rs2
-rw-r--r--crates/ide-assists/src/handlers/inline_type_alias.rs1
-rw-r--r--crates/ide-assists/src/handlers/wrap_unwrap_cfg_attr.rs1
-rw-r--r--crates/rust-analyzer/src/config.rs2
-rw-r--r--crates/rust-analyzer/tests/slow-tests/ratoml.rs2
5 files changed, 5 insertions, 3 deletions
diff --git a/crates/hir-expand/src/declarative.rs b/crates/hir-expand/src/declarative.rs
index b1a6eed2fb..86dd4aef09 100644
--- a/crates/hir-expand/src/declarative.rs
+++ b/crates/hir-expand/src/declarative.rs
@@ -1,4 +1,4 @@
-//! Compiled declarative macro expanders (`macro_rules!`` and `macro`)
+//! Compiled declarative macro expanders (`macro_rules!` and `macro`)
use base_db::CrateId;
use intern::sym;
diff --git a/crates/ide-assists/src/handlers/inline_type_alias.rs b/crates/ide-assists/src/handlers/inline_type_alias.rs
index f6624d6c87..66dffde505 100644
--- a/crates/ide-assists/src/handlers/inline_type_alias.rs
+++ b/crates/ide-assists/src/handlers/inline_type_alias.rs
@@ -43,6 +43,7 @@ use super::inline_call::split_refs_and_uses;
// fn foo() {
// let _: i32 = 3;
// }
+// ```
pub(crate) fn inline_type_alias_uses(acc: &mut Assists, ctx: &AssistContext<'_>) -> Option<()> {
let name = ctx.find_node_at_offset::<ast::Name>()?;
let ast_alias = name.syntax().parent().and_then(ast::TypeAlias::cast)?;
diff --git a/crates/ide-assists/src/handlers/wrap_unwrap_cfg_attr.rs b/crates/ide-assists/src/handlers/wrap_unwrap_cfg_attr.rs
index 0fa46ef43a..149cb4c438 100644
--- a/crates/ide-assists/src/handlers/wrap_unwrap_cfg_attr.rs
+++ b/crates/ide-assists/src/handlers/wrap_unwrap_cfg_attr.rs
@@ -25,6 +25,7 @@ use crate::{AssistContext, AssistId, AssistKind, Assists};
// struct S {
// field: i32
// }
+// ```
enum WrapUnwrapOption {
WrapDerive { derive: TextRange, attr: ast::Attr },
diff --git a/crates/rust-analyzer/src/config.rs b/crates/rust-analyzer/src/config.rs
index a7bde20026..4cc60695fe 100644
--- a/crates/rust-analyzer/src/config.rs
+++ b/crates/rust-analyzer/src/config.rs
@@ -60,7 +60,7 @@ mod patch_old_style;
// However, editor specific config, which the server doesn't know about, should
// be specified directly in `package.json`.
//
-// To deprecate an option by replacing it with another name use `new_name | `old_name` so that we keep
+// To deprecate an option by replacing it with another name use `new_name` | `old_name` so that we keep
// parsing the old name.
config_data! {
/// Configs that apply on a workspace-wide scope. There are 2 levels on which a global configuration can be configured
diff --git a/crates/rust-analyzer/tests/slow-tests/ratoml.rs b/crates/rust-analyzer/tests/slow-tests/ratoml.rs
index 77048ad83d..a857e0c296 100644
--- a/crates/rust-analyzer/tests/slow-tests/ratoml.rs
+++ b/crates/rust-analyzer/tests/slow-tests/ratoml.rs
@@ -844,7 +844,7 @@ fn ratoml_multiple_ratoml_in_single_source_root() {
// [dependencies]
// p2 = { path = "../p2" }
-// #,
+// "#,
// r#"
// //- /p1/src/lib.rs
// enum Value {