aboutsummaryrefslogtreecommitdiff
path: root/docs/user/features.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/user/features.md')
-rw-r--r--docs/user/features.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/user/features.md b/docs/user/features.md
index 56a2f025c..48c63ba7b 100644
--- a/docs/user/features.md
+++ b/docs/user/features.md
@@ -108,7 +108,7 @@ Stop `cargo watch`.
108#### Structural Seach and Replace 108#### Structural Seach and Replace
109 109
110Search and replace with named wildcards that will match any expression. 110Search and replace with named wildcards that will match any expression.
111The syntax for a structural search replace command is `<search_pattern> ==>> <replace_pattern>` where `$<name>:expr` in the search pattern will match any expression and `$<name>` will fill the matching expression in the replace pattern. Available via the command `rust-analyer.ssr`. 111The syntax for a structural search replace command is `<search_pattern> ==>> <replace_pattern>`. A `$<name>:expr` placeholder in the search pattern will match any expression and `$<name>` will reference it in the replacement. Available via the command `rust-analyzer.ssr`.
112 112
113```rust 113```rust
114// Using structural search replace command [foo($a:expr, $b:expr) ==>> ($a).foo($b)] 114// Using structural search replace command [foo($a:expr, $b:expr) ==>> ($a).foo($b)]