diff options
author | Ville Penttinen <[email protected]> | 2019-02-23 10:53:53 +0000 |
---|---|---|
committer | Ville Penttinen <[email protected]> | 2019-02-23 10:53:53 +0000 |
commit | 7046b162756b0fa1b6e6e2223ffbfdf6f41ca6bc (patch) | |
tree | 8948da6dff86a5fb46259cda74c7d26c6c2addbc /crates/ra_ide_api | |
parent | 2a3abe2ce3ebaa0411012cc1be6829c9cb6ea16f (diff) |
Fix NavigationTarget debug_render container_name output
Diffstat (limited to 'crates/ra_ide_api')
-rw-r--r-- | crates/ra_ide_api/src/navigation_target.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_ide_api/src/navigation_target.rs b/crates/ra_ide_api/src/navigation_target.rs index e9240283e..2c9ec970a 100644 --- a/crates/ra_ide_api/src/navigation_target.rs +++ b/crates/ra_ide_api/src/navigation_target.rs | |||
@@ -193,7 +193,7 @@ impl NavigationTarget { | |||
193 | buf.push_str(&format!(" {:?}", focus_range)) | 193 | buf.push_str(&format!(" {:?}", focus_range)) |
194 | } | 194 | } |
195 | if let Some(container_name) = self.container_name() { | 195 | if let Some(container_name) = self.container_name() { |
196 | buf.push_str(&format!(" {:?}", container_name)) | 196 | buf.push_str(&format!(" {}", container_name)) |
197 | } | 197 | } |
198 | buf | 198 | buf |
199 | } | 199 | } |