mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-02 14:51:48 +00:00
Auto merge of #15295 - bernardosulzbach:fix-ssr-help-message, r=lnicola
Fix rust-analzyer ssr help message It's missing a `>`, so ``` > rust-analyzer ssr '''$a.foo($b) ==> bar($a, $b)''' can't parse `rule`, Parse error: Cannot find delimiter `==>>` ``` happens.
This commit is contained in:
commit
ca797d2f88
1 changed files with 1 additions and 1 deletions
|
@ -113,7 +113,7 @@ xflags::xflags! {
|
||||||
}
|
}
|
||||||
|
|
||||||
cmd ssr {
|
cmd ssr {
|
||||||
/// A structured search replace rule (`$a.foo($b) ==> bar($a, $b)`)
|
/// A structured search replace rule (`$a.foo($b) ==>> bar($a, $b)`)
|
||||||
repeated rule: SsrRule
|
repeated rule: SsrRule
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue