diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-10-02 09:07:42 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2020-10-02 09:07:42 +0100 |
commit | e535489f03901ab94a89dd2de67f35714f0c3cfc (patch) | |
tree | f3e70f9a42b29d3d01448cc298dc61a0bce04294 /crates/hir/src/code_model.rs | |
parent | c3bf7659b13a14541ddcff9c243c79b45bfd6829 (diff) | |
parent | 82d6cfd495c7e0f230ce1ac61e7a4297fa22f02f (diff) |
Merge #6104
6104: Minor clippy performance suggestions r=matklad a=kjeremy
Co-authored-by: kjeremy <[email protected]>
Diffstat (limited to 'crates/hir/src/code_model.rs')
-rw-r--r-- | crates/hir/src/code_model.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/hir/src/code_model.rs b/crates/hir/src/code_model.rs index 567fd91af..5721a66c4 100644 --- a/crates/hir/src/code_model.rs +++ b/crates/hir/src/code_model.rs | |||
@@ -145,7 +145,7 @@ impl Crate { | |||
145 | } | 145 | } |
146 | }).flat_map(|t| t).next(); | 146 | }).flat_map(|t| t).next(); |
147 | 147 | ||
148 | doc_url.map(|s| s.trim_matches('"').trim_end_matches("/").to_owned() + "/") | 148 | doc_url.map(|s| s.trim_matches('"').trim_end_matches('/').to_owned() + "/") |
149 | } | 149 | } |
150 | } | 150 | } |
151 | 151 | ||