aboutsummaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
authorivan770 <[email protected]>2021-03-13 15:28:05 +0000
committerivan770 <[email protected]>2021-03-13 15:28:05 +0000
commit32ad929b82b64a49c0c4df891967ac82786c6682 (patch)
tree38e0a16ff4ad72cdddd60aadf88179055d81e708 /crates
parent3bc5d81a33c98da2a5b450c817c09f5a41b03e98 (diff)
Fix incorrect DerefMut test reference type
Diffstat (limited to 'crates')
-rw-r--r--crates/ide_completion/src/render.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ide_completion/src/render.rs b/crates/ide_completion/src/render.rs
index 1f4a8173a..0c1169ecb 100644
--- a/crates/ide_completion/src/render.rs
+++ b/crates/ide_completion/src/render.rs
@@ -1082,7 +1082,7 @@ impl Deref for T {
1082} 1082}
1083 1083
1084impl DerefMut for T { 1084impl DerefMut for T {
1085 fn deref_mut(&self) -> &mut Self::Target { 1085 fn deref_mut(&mut self) -> &mut Self::Target {
1086 &mut self.0 1086 &mut self.0
1087 } 1087 }
1088} 1088}