about summary refs log tree commit diff
diff options
context:
space:
mode:
authorDavid Kurilla <130074511+davidkurilla@users.noreply.github.com>2024-11-12 23:58:24 +0000
committerDavid Kurilla <130074511+davidkurilla@users.noreply.github.com>2024-11-12 23:58:24 +0000
commit90857446625c7c0be4f623c8617066cd5cd21258 (patch)
tree1d7dd858b8f4a7e8030f8b3289360d62f3d06938
parent421661553fa550fbdb1c011e8930443ae09e5519 (diff)
downloadrust-90857446625c7c0be4f623c8617066cd5cd21258.tar.gz
rust-90857446625c7c0be4f623c8617066cd5cd21258.zip
fix: fix indentation error
-rw-r--r--src/tools/rust-analyzer/crates/ide-assists/src/handlers/add_braces.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/rust-analyzer/crates/ide-assists/src/handlers/add_braces.rs b/src/tools/rust-analyzer/crates/ide-assists/src/handlers/add_braces.rs
index 5ffaaebc9ea..9f93f16c0f6 100644
--- a/src/tools/rust-analyzer/crates/ide-assists/src/handlers/add_braces.rs
+++ b/src/tools/rust-analyzer/crates/ide-assists/src/handlers/add_braces.rs
@@ -1,5 +1,5 @@
 use syntax::{
-    ast::{self, edit::AstNodeEdit, edit_in_place, make, syntax_factory::SyntaxFactory}, syntax_editor::SyntaxEditor,
+    ast::{self, edit_in_place::Indent, make, syntax_factory::SyntaxFactory}, syntax_editor::SyntaxEditor,
     AstNode,
 };