mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-10-01 22:31:43 +00:00
use strip_prefix() instead of starts_with and slicing (clippy::manual_strip)
This commit is contained in:
parent
3d9b3a8575
commit
8a67116857
4 changed files with 9 additions and 13 deletions
|
@ -154,8 +154,8 @@ fn hide_hash_comments(text: &str) -> String {
|
|||
fn reveal_hash_comments(text: &str) -> String {
|
||||
text.split('\n') // want final newline
|
||||
.map(|it| {
|
||||
if it.starts_with("# ") {
|
||||
&it[2..]
|
||||
if let Some(stripped) = it.strip_prefix("# ") {
|
||||
stripped
|
||||
} else if it == "#" {
|
||||
""
|
||||
} else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue